I am using energia msp430 and gsm900a module. I want to send and receive sms & send sms from msp430 to and gsm900a to any mobile number is working fine but at time of receiving sms in serial monitor of energia is not showing any responses from to incoming msg . I am attaching my code also
#include<msp430.h>
void setup()
{
Serial.begin(9600); // Setting the baud rate of GSM Module
// Serial.begin(4800); // Setting the baud rate of Serial Monitor (Arduino)
delay(1000);
}
void loop()
{
if (Serial.available()>0)
switch(Serial.read())
{
case 's':
sen