Can anyone give some info about this please?I need to use a 18,432MHz crystal...
Looking at the OSC values in the DEFINEs list, I can't find the value "18".
Shall I simply define the OSC as, i.e., "20" while connecting a 18MHZ crystal?
Can anyone give some info about this please?I need to use a 18,432MHz crystal...
Looking at the OSC values in the DEFINEs list, I can't find the value "18".
Shall I simply define the OSC as, i.e., "20" while connecting a 18MHZ crystal?
Roger
Does really nobody know something about that?I need to use a 18,432MHz crystal...
Looking at the OSC values in the DEFINEs list, I can't find the value "18".
Shall I simply define the OSC as, i.e., "20" while connecting a 18MHZ crystal?
Roger
You are going to have to unless you change the libraries. Just remember that any PAUSE commands will be 8.5% longer than you think.
You can get around that by creating some variables.
For example: If your program needed 3 different delays 20ms, 50ms, 190ms
You would create 3 vars
delay20 con 18
delay50 con 46
delay190 con 175
Now, if you need a 20mSec delay, you can use the command
PAUSE delay20
It is not exact, but it is close.
Charles Linquist
Thanks Charles,
I thought this would happen. No problem then, for me ;-)
Roger
Bookmarks