Microcontroller › PIC › Interfacing GSM SIM900 with PIC18f26k22 › Hi Shubham,The codem for
March 7, 2014 at 4:27 am
#11219
Participant
Hi Shubham,
The codem for sending string may or maynot work depends on the compiler. Some compiler requires ” const char * “, like
“void UART_sendstring(const char *str)”.
Try to send a readable ascii character using UART_sendbyte(), like
UART_sendbyte(‘A’);
Also make sure that the serial port settings like the baud rate, start bit, stop bit etc. are same on both the sides.