I got an ABC Maxi Board made by Investment Technologies with an 8 MHz
AT90S8535. Since it comes with a Basic compiler I thought it would be easier
to run the A/D tests in Basic. I set up a 6600 Hz software delay loop (no
interrupts) to drive a coil and read the A/D.
First I used a voltage divider to bias the A/D in the center of its range
and took many of samples of the DC voltage. There is no more than one LSB of
noise. Then I drove the coil with a 6600 Hz pulse with enough current to
develop a 1 volt peak to peak signal across the coil. I adjusted the
sampling point to the steepest part of the waveform. I also tried a 2.5 volt
peak to peak signal. In all cases the noise is no more than one LSB. So it
looks like this A/D is going to be ok for directly reading a 6600 Hz signal.
But I did run into some problems before I started getting good results. On
my first try at reading the AC signal I was getting about 5 bits of noise on
the 10 bit sample. The main problem turned out to be that the Basic compiler
sets up one or more timer interrupts for a real time clock and a timer
function. Those interrupts were causing a couple of microseconds of jitter
in my software timing loop. So I was seeing almost a hundred millivolts of
noise because the sampling time was not consistent. I had to disable the
Basic timer interrupts while I was making measurements.
While I was tracking down that problem I also noticed that the A/D does not
start when you tell it to. It does not start until the next tick of the A/D
clock. If you use a 4 microsecond A/D clock then there can be a delay of
from 0 to 4 micro sec before the A/D actually starts. This means that my
high speed interrupt will have to be synchronized with the A/D clock, which
means that the interrupt period will have to be a multiple of 4
microseconds. That means that the period of the transmit signal will have to
be a multiple of 16 microseconds, because there are 4 interrupts per cycle.
Unfortunately there are no multiples of 16 micro sec that give 6600 Hz. I
have not decided what to do about that yet.
But the good news is that the on board A/D seems to do a good job of reading
a rapidly changing signal (tested at about 30,000 volts/sec).
Robert Hoolko
AT90S8535. Since it comes with a Basic compiler I thought it would be easier
to run the A/D tests in Basic. I set up a 6600 Hz software delay loop (no
interrupts) to drive a coil and read the A/D.
First I used a voltage divider to bias the A/D in the center of its range
and took many of samples of the DC voltage. There is no more than one LSB of
noise. Then I drove the coil with a 6600 Hz pulse with enough current to
develop a 1 volt peak to peak signal across the coil. I adjusted the
sampling point to the steepest part of the waveform. I also tried a 2.5 volt
peak to peak signal. In all cases the noise is no more than one LSB. So it
looks like this A/D is going to be ok for directly reading a 6600 Hz signal.
But I did run into some problems before I started getting good results. On
my first try at reading the AC signal I was getting about 5 bits of noise on
the 10 bit sample. The main problem turned out to be that the Basic compiler
sets up one or more timer interrupts for a real time clock and a timer
function. Those interrupts were causing a couple of microseconds of jitter
in my software timing loop. So I was seeing almost a hundred millivolts of
noise because the sampling time was not consistent. I had to disable the
Basic timer interrupts while I was making measurements.
While I was tracking down that problem I also noticed that the A/D does not
start when you tell it to. It does not start until the next tick of the A/D
clock. If you use a 4 microsecond A/D clock then there can be a delay of
from 0 to 4 micro sec before the A/D actually starts. This means that my
high speed interrupt will have to be synchronized with the A/D clock, which
means that the interrupt period will have to be a multiple of 4
microseconds. That means that the period of the transmit signal will have to
be a multiple of 16 microseconds, because there are 4 interrupts per cycle.
Unfortunately there are no multiples of 16 micro sec that give 6600 Hz. I
have not decided what to do about that yet.
But the good news is that the on board A/D seems to do a good job of reading
a rapidly changing signal (tested at about 30,000 volts/sec).
Robert Hoolko
Comment