Author |
Message |
Topic: PIC24 INT_RDA does not work |
Lincad
Replies: 10
Views: 10600
|
Forum: General CCS C Discussion Posted: Mon Feb 27, 2012 5:23 am Subject: PIC24 INT_RDA does not work |
Thanks for all your responses.
With help from CCS support I have a solution
One thing to note the two #pin_select lines for setting the UART1 pins must be
before the #use rs232() line.
#pin ... |
Topic: PIC24 INT_RDA does not work |
Lincad
Replies: 10
Views: 10600
|
Forum: General CCS C Discussion Posted: Fri Feb 24, 2012 8:48 am Subject: PIC24 INT_RDA does not work |
#use rs232(UART1, baud=9600, xmit=PIN_G6, rcv=PIN_C1, BRGH1OK, PARITY=E,BITS =8, STOP=1, RESTART_WDT, ERRORS )
// Globals used for serial interrupt routine.
unsigned int8 buffer[80 ... |
|