I'm using the 18F8722. The microchip data book for PIC18FXX20 on page 213 show the TAD .vs. Device Operating Frequencies. I have a 10 MHZ xtal to run the PIC. To get the correct voltages I'm having ...
The answer is that PORT1 has a MAX232 level converter and PORT2 doesn't so the directive INVERT must be included in the directive
#use rs232(baud=9600, xmit=PIN_g1,INVERT,stream=PORT2)
I'm trying to use 2 usarts. I'm outputing a * and % character for a test.
The 1st usart PORT1 is working fine.
The 2nd usart PORT2 is suppose to output a % but is sending a lower case m. Does anyon ...