GCBasic compile with no error message a JVC812.asm and a JVC812.hex files from http://capaction.free.fr/JVC812.txt ( rename TXT => GCB).
MPASMWIN refuse to produce the JVC812.hex file and produce an error file with variables added by GCBasic and lot of messages I cannot handle.
I have this problem since I put the code for RPM measurement. with Timer1 and CCP1.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
GCBasic compile with no error message a JVC812.asm and a JVC812.hex files from
http://capaction.free.fr/JVC812.txt ( rename TXT => GCB).
MPASMWIN refuse to produce the JVC812.hex file and produce an error file with variables added by GCBasic and lot of messages I cannot handle.
I have this problem since I put the code for RPM measurement. with Timer1 and CCP1.
Most of the errors have to do with the statements relating to the usage of:
TimeOffset = 220 10us;
It should be just
TimeOffset = 220
Using a define works good for constant wait cycles, for instance:
#define TimeOffset1 wait 220 10us