Hi All ,
I am using cc3200 launchpad and energia as IDE in my application . I wrote some code in that around 16 gpio of cc3200 so some of gpio are toggling automatically can anyone suggest me what modification I need to do ?
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