Build
your 40 MHz Frequency meter!
By Ibrahim
Kamal
Last update:
9/5/08
This article shows how to build a small, cheap
and simple frequency meter, without any fancy, out of reach
components. The simple proposed design can measure frequencies
up to 40 Mhz with errors below 1%! This degree of precision
will be more than enough to debug most of your analog and
digital circuits, and will give you the ability to analyze
many aspects that you were unable to see before.
The frequency meter is build on a veroboard, using only 3
components and 8 resistors. It is designed to be plugged into
any standard bread-board. |
|
1.The
hardware
 |
figure 1.a |
As you can see in figure 1.a, the design
is built on a ATMEGA16 micro controller. There are no crystal
oscillators, as we are using the internal RC oscillator, calibrated
to 8 MHz.
The frequency measurement probe is connected to W1 terminal, which
is then fed to the pin PB0 and the clock input of the 74191 4-bit
counter. The 4-bit counter will be used to divide the measured
frequency by 16 before feeding it to the microcontroller. As you
can see, all the features of the counter aren't used, only the
Q3 output is used, whose frequency will always be equal to the
input frequency divided by 16.
The
7 segments display used is composed of 4 cells all integrated
into one package. This reduces the number of wires to
enable the different cells.
The display we used is common anode type,
and had its leads arranged according to the diagram in
figure 1.b, and most of the 7 segment cells of this type
will follow those standard connections. However, if you
use different type of 7 segment display, the software
can be very easily adapted to accommodate the changes.
The pins E1 to E4 lets you enable one of the 4 cells,
E1 enables the right most one.
Since we are using an ATMEGA16 microcontroller that can
source up to 40mA of current per I/O pin, we don't need
transistors, so the 4 enable signals of the 7 segment
display is directly connected to the microcontroller.
The wire connection W2 is to connect to ground, to allow
measurement of frequencies on devices that do not share
the same power supply as the frequency meter itself. (Remark,
for one circuit to be able to measure an signal on another
circuit, they must share the same ground voltage, se we
connect them together.) |
figure 1.b |
Finally, J1 is a connection for the ISP programmer
(In System Programmer). In need, after you finish the project
you will spend 10 minutes doing nothing by calibrating your frequency
meter, and adjusting some variables to make the display clearer
or to reduce the flickering of the numbers being displayed. That's
why we added this ISP connector, because we will need to update
the code of the microcontroller often.
The whole is assembled on a veroboard, and, as you can see in
figure 1.c, it is designed to be plugged directly into the power
supply rails of a standard bread board. You can also notice that
there is a protection diode added (though it is not present in
the schematic), it prevents any damage to occur in case the frequency
meter is plugged in the wrong direction.
figure 1.c |
Next figure (1.d) shows the two probes that are connected to W1
and W2 (see the schematic in figure 1.a). The ground probe is
only used when the power supply of the frequency meter is different
from the power supply of the device being tested, to connect both
grounds together. the frequency measurement probe is made of a
single pin header, covered with a piece of "Heat shrink tube"
(or also called thermo-retractable tube).
figure 1.d |
2.
Frequency measurement algorithm
 |
We all know - at least most of the visitors that
made it to that website! - that "Frequency is a measure
of the number of occurrences of a repeating event per unit time".
but measuring frequencies with digital tools such as this microcontroller
that have its limitations involve some further studies to achieve
the required results.
The maximum frequency that can be sampled by one of the counters
of the ATMEGA16 cannot exceed the CPU clock divided by 2.5. Let's
call this frequency F_max. So, assuming the ATMEGA16's CPU is
clocked at 8 MHz, we can directly measure frequencies up to 3.2
Mhz. Frequencies above that limit will be measured as 3.2 MHz
or less, since not all the pulses will be sampled. To be able
to measure frequencies above F_max, we use a 4 bit counter as
a frequency divider, dividing the measured frequency by 16. This
way we can also measure frequencies up to 16 times F_max, but
due to the limitation of the 74191 counter, the actual maximum
measurable frequency wont exceed 40 MHz.
The algorithm that we developed measures both the original frequency
(let's call it F_o) and divided frequency (F_d). in normal conditions,
when the frequency is below F_max, the following relation is true:
But as F_o approaches to F_max, more and more pulses wont be sampled,
and the the relation above will obviously become:
And hence the limit of the microcontroller can be automatically
detected.
The frequency meter starts by selecting the original frequency
for processing and display, and as soon as it detects that it
reaches F_max (using the method described above), the divided
frequency is selected instead.
This algorithm can be summarized in the following flow chart (figure
2.a)
figure 1.a |
3.The
software
 |
The C source code for this frequency meter can be downloaded here.
The source code is detailed with as much comments as I could,
but you may need some more explanations to understand the code:
The code is made
such that the number being displayed is in KHz. For example, if
you see on the 7 segments the number "325.8" that means
325.8 KHz, "3983" would mean 3983 KHz (or 3.983 MHz).
If the number is in tenth of megahertz, it is displayed with an
"m" at the end like "22.3m" meaning 22.3 MHz.
Timer/Counter 0
is used to count incoming pulses directly
Timer/Counter 1
is used to count incoming pulses divided by 16
Timer/Counter 2
is configured as timer with a 1024 prescaller (counting CPU frequency
divided by 1024). It is used to call the "frequency calculation
and selection algorithm" every timer period T. T is defined
as "1024*256/(F_cpu)".
The constant "factor"
defined in the top of the program as "31.78581" have
to be calibrated by measuring a known frequency. This factor was
initially calculated as the following:
| factor
= F_cpu / (1024*256) = 8.E6 / (1024*256) = 30.51757 |
But due to the fact that there is some delay between the time
the Timer_2 overflows and the time where the counted frequency
is actually processed, this factor need some calibration to reflect
more accurately the reality of the frequency being measured.
The Anti-flickering
algorithm is complicated but very effective, specially in measuring
frequencies that are unstable. It will totally prevent the display
from quickly switching between various values, while still showing
accurate values, and quickly change if the frequency being measured
"really" changes.
One last note, the
ATMEGA16 is chipped with a 1 MHz internal oscillator enabled.
To set the internal oscillator to 8Mhz, you have to use some programmer
(like our ISP programmer) to change the
fuse bits of the micro controller to adjust the internal oscillator's
frequency. (For 8MHz, the CKSEL3..0 fuses have to be set to '0100').
Download
the zip file for the project.
containing the C code and complied HEX
file. |
I hope this article was useful. Any comments and further questions
are welcome in the forum below.
Preview of the last 15
messages discussing this page. Messages are sorted from the newest to
the oldest. |
Posted
by:
ikalogic
on:
12 Dec 2009 |
Re: 40 MHz frequency meter |
|
 |
Quoting diff.thinkr: Also can I use 74LS191 instead of 74HC191. I am not able to get HC's here. Thank you |
yes
|
|
|
|
Posted
by:
diff.thinkr
on:
11 Dec 2009 |
40 MHz frequency meter |
|
 |
What are the values of R1-R8? Also is it ok to use common anode or common cathode type displays? How do I distinguish them?
|
|
|
|
Posted
by:
ikalogic
on:
22 Nov 2009 |
Re: 40 MHz frequency meter |
|
 |
| Quoting dave: hello ibrihim, would it be possible to use an eight digit display for the readout vs. the four digit display? thank you, dave |
Sure, but you will have to increase the current going to each segment by 2, since the "ON time" will decrease by two. That's in order to keep the light intensity the same
|
|
|
|
Posted
by:
dave
on:
21 Nov 2009 |
Re: 40 MHz frequency meter |
|
 |
hello ibrihim, would it be possible to use an eight digit display for the readout vs. the four digit display? thank you, dave
|
|
|
|
Posted
by:
tmedap
on:
03 Oct 2009 |
|
|
Posted
by:
ikalogic
on:
22 May 2009 |
Re: 40 MHz frequency meter |
|
 |
Quoting nenoviciss: i have a question: what tipe of compiler do you use? tanks! |
Back at the time i build that project i was using VMLAB
Now i Use AVR Studio
EDIT I just figured out that this question was not intended for me in the first place...
|
|
|
|
Posted
by:
salemgheiyh
on:
24 Mar 2009 |
40 MHz frequency meter |
|
 |
hi, ibrahim My project is using different kind of PIC it is 18f242 , is used to measure the frequency from 10hz to 100khz could you tell me some guide lines you think I will get benefit of them ,and thanks
|
|
|
|
 |
Posted
by:
aaron_joseph
on:
10 Feb 2009 |
40 MHz frequency meter |
|
 |
hi ika, Can I ask for an another HEX code for the digital frequency meter, it seems that the output pins from 24 to 27 or the (B,C,G and H/decimal point) pins of the 7 segment displays seemed to be shorted to each other..-( and I can't read or interpret C coding..I'm not that good in programming )-..This is maybe the cause why the output display of the 7 segments are just C's..I have checked the connections with a multitester without the ATMEGA16 chip mounted and all the pins of the 7 segments seemed alright.I am having this doubt that maybe there is something wrong with the programming or the program itself..I have two ATMEGA16 chips and I have programmed them both, and unfortunately, both of them got the same output response..please help with this.. I am hoping for your immediate response..Thank you in advance!
|
|
|
|
 |
Posted
by:
aaron_joseph
on:
10 Feb 2009 |
40 MHz frequency meter |
|
 |
hi ika, Can I ask for an another HEX code for the digital frequency meter, it seems that the output pins from 24 to 27 or the (B,C,G and H/decimal point) pins of the 7 segment displays seemed to be shorted to each other..This is maybe the cause why the output display of the 7 segments are just C's..I have checked the connections with a multitester without the ATMEGA16 chip mounted and all the pins of the 7 segments seemed alright.I am having this doubt that maybe there is something wrong with the programming or the program itself..I have two ATMEGA16 chips and I have programmed them both, and unfortunately, both of them got the same output response..please help with this.. I am hoping for your immediate response..Thank you in advance!
|
|
|
|
You have
to be a member to post replies. |
|
|
|