CDPRO2 Group Project (open source project)

Status
Not open for further replies.
FWIW

I have decided to use a self training PIC called TinyIR [you can find this on a google search].

It is an 8 pin PIC preprogrammed that can give 8 outputs using an octal latch. As it has an LED showing that a valid code has been received, this can be used as an interrupt source.

hope that you find this of interest

bill
 
Hi billr,

I have just do it, but there is a problem: when I compile TransCom.c I get an error "undeclared variable INTDATAREC".
So, hex file is not created.

If you succeded to create hex file, please send it to me, or let me know where I'm wrong.

Thank you
Andrea
 
andrea_mori said:
P.S.
The error I get:

transcom.c: IntSendData ()
1095: INTDATAREC = 1;
undefined identifier: INTDATAREC
1100: INTDATAREC = 0;
undefined identifier: INTDATAREC
Exit status = 1

Andrea
try to add "char INTDATAREC;" in the global variables declaration.

Maybe your C compiler need to have all variables declared...

Which C compiler are you using ?
 
Status
Not open for further replies.