I have created a program for the PIC18F46K80, that blinks an LED, outputs a dash to the UART, and echoes out characters via an interrupt… all works ok… Flowcode source attached (46K80.fcfx)…
When I try to do the same on the PIC18F47K40…
I had to add the following C code before the UART setup: -
Code: Select all
RX1PPS = 0x17; // RC7 = Rx1
RC6PPS = 0x09; // RC6 = Tx1
But, the interrupt does not work… what do I need to do to get the interrupt to work?
Flowcode source attached (47K40.fcfx) …