Demand Peripherals     Robotics and Automation Made Easy

COUNT4: Quad Up-Counter

The count4 peripheral provides four independent channels of count and period information. The sampling interval can be between 10 and 60 milliseconds in steps fo 10 ms. The counters can count rising, falling, or both edges in a pulse stream.

Each count reading is followed by the number of seconds it took to reach that count. The measured count interval is accurate to the microsecond. Having a count and an interval lets you computer the period with high accuracy even at very low count rates.

 

Hardware:

The COUNT4 peripheral is often paired with either the GPIO4 card or the GPIO4-ST card.

Each input pin is connected to separate counter. The maximum input frequency for each counter is 1.0 MHz.

 

Resources:

The quad counter offers a configurable update rate and a choice of counting on the leading edge, the trailing edge, or on both edges. The output is a set of eight numbers that are four pairs of count and interval information. The count output works with select().

counts : Counts and intervals as four pairs of numbers where the first number is an unsigned integer and the second number is the number of seconds in the interval as a floating point number with 6 digits after the decimal point. All values are separated by spaces and each reading is terminated by a newline.

This resource is read-only. You can use the pccat command and select() to get continuous updates into your program.

edges : Which edges to count as four single digit numbers in the range of 0 to 3. A setting of 0 disables the counter, a setting of 1 counts rising edged, 2 counts falling edges, and a setting of 3 counts both edges. Set all edges to 0 to turn off all output.

update_rate : Update period for the counts resource in milliseconds. The pccat command and select() on counts will will give a readable file descriptor every update_rate milliseconds. This update period must be between 10 and 60 milliseconds in steps of 10 milliseconds. That is, valid values are 10, 20, 30, 40, 50, or 60 milliseconds.

This is a read-write resource and works with pcset and pcget but not pccat.

 

Examples:

Count both edges on channel one, disable channels two through four, and set the sample rate to 50 milliseconds.

   pcset count4 edges 3 0 0 0
   pcset count4 update_rate 50
   pccat count4 counts

A sample output from 'counts' might be:

    1   0.007472   0   0.000000   0   0.000000   0   0.000000
    0   0.000000   0   0.000000   0   0.000000   0   0.000000
    1   0.007476   0   0.000000   0   0.000000   0   0.000000
    1   0.007474   0   0.000000   0   0.000000   0   0.000000
    0   0.000000   0   0.000000   0   0.000000   0   0.000000

You can not get an accurate frequency from counts alone but by including the accumulation time you can see that the input frequency is about 133.8 Hertz.

 

WARNING: Count4 is sensitive to noise around the zero-to-one threshold. Use Schmitt triggers to condition inputs that are not inherently digital.