Prop friendly frequency IC chip??
w4fej
Posts: 264
Does anyone know of a SMALL IC chip frequency counter that is:
A: Prop friendly using I2C, SPI or TTL level RS-232 serial communications
B: Counts 3.0 Mhz to 30 Mhz to a resolution of 1 Khz (Extreme accuracy not required)
C: operates on 3.3 vdc, 5.0 vdc or 12 vdc.
Preferably standard pin spacing to fit on a Prop proto board (.1" spacing)
E: Does not need to drive a display at all as that is already in place. (The display that is)
F: Cheap!
This counter won't be used as "test equipment" but rather an indicator of a low power HF carrier frequency. (Free air sampling, no direct connection to transmitter)
Is the Prop itself capable of doing the job by sampling the carrier (separate cog) and turning it into square waves to measure the time between the pulses or some other method??
Thanks for reading..
A: Prop friendly using I2C, SPI or TTL level RS-232 serial communications
B: Counts 3.0 Mhz to 30 Mhz to a resolution of 1 Khz (Extreme accuracy not required)
C: operates on 3.3 vdc, 5.0 vdc or 12 vdc.
Preferably standard pin spacing to fit on a Prop proto board (.1" spacing)
E: Does not need to drive a display at all as that is already in place. (The display that is)
F: Cheap!
This counter won't be used as "test equipment" but rather an indicator of a low power HF carrier frequency. (Free air sampling, no direct connection to transmitter)
Is the Prop itself capable of doing the job by sampling the carrier (separate cog) and turning it into square waves to measure the time between the pulses or some other method??
Thanks for reading..
Comments
What is the amplitude of the incoming signal?
The Prop can measure Frequency, if you scale to the right places.
Look at the XX4060 series, for very cheap, ev 74LVC4060, and they have a small pre-amp.
Addit : If you want small, then a 74xx2G80 comes in 8 pin SMD, and it can divide by 4, which will give 1KHz resolution in 4ms measure time, and a fMax of well over 100MHz (but no preamp - add a 2GU04 for that)
The Propeller counters can measure frequencies up to 30 MHz if the Propeller is clocked with 80 MHz. Just use a counter in POSEGE mode and count the pulses for one second. This can even be done in Spin: This code should send the frequency every second to the Terminal. Set the right pin in the CON section and make sure that your frequency signal at the pin is a logic level signal with max 3.3 Volts. If it is higher use an appropriate resistor.
Andy
It also needs to be very close to 50% duty cycle.
A flip-flop as a divide by 2 will do that nicely and extends the frequency range to boot.
Yup, like the 74xx2G80 I suggested in #3
There is a gent (ham radio operator, W8ZR) that built an antenna tuner around a Basic Stamp SX (Google E-Z Tuner website) and he has a circuit to pick off the RF to measure the frequency. I'll mock up that circuit and see what we have for levels and shape. He divided the freq down as I guess the SX chip can't directly handle the 30 Mhz end of the range..
I'm off to do some reading about counters and how they saved civilization...
Thank you all... Mike B.
Yep, I missed that but you are always spot on with your suggestions