element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
    About the element14 Community
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Japan
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      •  Vietnam
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Embedded and Microcontrollers
  • Technologies
  • More
Embedded and Microcontrollers
Embedded Forum data post on server using sim868 with at commands
  • Blog
  • Forum
  • Documents
  • Quiz
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Embedded and Microcontrollers to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Not Answered
  • Replies 0 replies
  • Subscribers 481 subscribers
  • Views 383 views
  • Users 0 members are here
  • sim868
  • gsm
Related

data post on server using sim868 with at commands

sp4
sp4 over 8 years ago

I am using sim868 module interface with msp432p401r controller through serial communication. I want to post the data on server.But code is not posting the data.When i send"AT+HTTPREAD"command to sim868 from msp432 i got response{}( blank bracket). I am sending " AT+HTTPDATA=192, 10000" command to sim868 i got response " DOWNLOAD" and after 10000 ms i got ok response also.the data will post within 10000 ms.

Below is my code:-

       UART initialize();

 

      uart_puts((char *)"AT"); // COMMAND FOR INITIALIZING GSM

       uart_putc(0x0D);//CARRIAGE RETURN

       __delay_cycles(1000000);//DELAY...WAIT FOR OK FROM GSM

       ok_response();

 

      uart_puts((char *)"AT+SAPBR=3,1,\"Contype\",\"GPRS\""); // COMMAND FOR INITIALIZING GSM

       uart_putc(0x0D);//CARRIAGE RETURN

       __delay_cycles(1000000);//DELAY...WAIT FOR OK FROM GSM

       ok_response();

 

       uart_puts((char *)"AT+SAPBR=3,1,\"APN\",\"internet\"");//SEND A MESSAGE TO PARTICULAR NUMBER

       uart_putc(0x0D);

       __delay_cycles(1000000);//DELAY...WAIT FOR OK FROM GSM

       ok_response();

 

       uart_puts((char *)"AT+CGATT=1"); // AT commands to initialize gsm modem

       uart_putc(0x0D);

       __delay_cycles(1000000);//DELAY...WAIT FOR OK FROM GSM

       ok_response();

 

       uart_puts((char *)"AT+SAPBR=1,1"); // AT commands to initialize gsm modem

       uart_putc(0x0D);

       __delay_cycles(100000000);//DELAY...WAIT FOR OK FROM GSM

       ok_response();

 

       uart_puts((char *)"AT+SAPBR=2,1"); // AT commands to initialize gsm modem

       uart_putc(0x0D);

       __delay_cycles(1000000);//DELAY...WAIT FOR OK FROM GSM

       ok_response();

 

       uart_puts((char *)"AT+HTTPINIT"); // AT commands to initialize gsm modem

       uart_putc(0x0D);

       __delay_cycles(1000000);//DELAY...WAIT FOR OK FROM GSM

       ok_response();

 

       uart_puts((char *)"AT+HTTPPARA=\"CID\",1"); // AT commands to initialize gsm modem

       uart_putc(0x0D);

       __delay_cycles(1000000);//DELAY...WAIT FOR OK FROM GSM

       ok_response();

 

       uart_puts((char *)"AT+HTTPPARA=\"URL\",http://resonics.xyz:8995/submit/data"); // AT commands to initialize gsm modem

       uart_putc(0x0D);

       __delay_cycles(1000000);//DELAY...WAIT FOR OK FROM GSM

       ok_response();

 

       uart_puts((char *)"AT+HTTPPARA=\"CONTENT\",\"application/x-www-form-urlencoded\""); // AT commands to initialize gsm modem

       uart_putc(0x0D);

       __delay_cycles(1000000);//DELAY...WAIT FOR OK FROM GSM

       ok_response();

      ((char *)"AT+HTTPDATA=99,100000"); // AT commands to initialize gsm modem

      uart_putc(0x0D);

      __delay_cycles(5000000);

      b=a;

      if( buff[b-3]=='D')

      {

            count=count+1;

            __delay_cycles(5000000);

            uart_puts((char *)"{  \"testID\" : 1,  \"testLevel\" : 1, }"); // AT commands to initialize gsm modem

            uart_putc(0x0D);

            __delay_cycles(5000000);   //DELAY...WAIT FOR OK FROM GSM

    

      }

     else

        {

            variable=variable+1;

        }

 

      uart_puts((char *)"AT+HTTPACTION=1");

      uart_putc(0x0D);

      __delay_cycles(5000000);//DELAY...WAIT FOR OK FROM GSM

      ok_response();

     

     uart_puts((char *)"AT+HTTPREAD");

     uart_putc(0x0D);

     __delay_cycles(5000000);//DELAY...WAIT FOR OK FROM GSM

 

 

// UART interrupt service routine

void EUSCIA0_IRQHandler(void)

   {

 

 

      if (EUSCI_A0->IFG & EUSCI_A_IFG_RXIFG)

       {

          EUSCI_A0->IFG &=~ EUSCI_A_IFG_RXIFG;// Clear interrupt

 

 

          // Echo the received character back

          buff[a]= EUSCI_A0->RXBUF;

 

 

          a++;

 

 

         }

   }

 

Please help me ??

  • Sign in to reply
  • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2026 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube