Microcontroller › AVR › Sending message from AVR atmega32 using sim900D › If your code is not working
December 18, 2012 at 9:04 am
#8845
Hemraj
Participant
If your code is not working then you can do one modification in function:
void gsm_cmd(char *cmd)
{
usart_send_string(cmd);
usart_send(0x0A);
usart_send(0x0D);
_delay_ms(500);
}