STM32 GPRS 通讯
单片机源程序如下:
- /************************************************************************************
- 接线方式:
- SIM800 STM32
- V_MCU--------->3.3V
- GND----------->GND
- T-TX---------->RX1
- T-RX---------->TX1
-
- 作者:神秘藏宝室
- 代码功能:STM32开机自动GPRS发送数据(前提,GSM模块需要开机获取到SIM卡信号)
- *************************************************************************************/
- #include "stm32f10x.h"
- #include "delay.h"
- #include "HX711.h"
- #include "usart.h"
- int main(void)
- {
- delay_init();
-
- NVIC_Configuration(); //设置NVIC中断分组2:2位抢占优先级,2位响应优先级
- uart_init(9600); //串口初始化为9600
- printf("AT\r\n");//先发AT,让GSM模块自动获取波特率为9600
- delay_ms(1000);
- printf("AT&F\r\n");
- delay_ms(1000);
- printf("AT+CGCLASS=\"B\"\r\n");
- delay_ms(1000);
-
- printf("AT+CGDCONT=1,\"IP\",\"CMNET\"\r\n");
- delay_ms(1000);
-
- printf("AT+CGATT=1\r\n");
- delay_ms(1000);
-
- printf("AT+CLPORT=\"TCP\",\"2000\"\r\n");
- delay_ms(1000);
-
-
- while(1)
- {
-
- printf("AT+CIPSTART=\"TCP\",\"61.174.40.245\",\"16919\"\r\n"); //修改为要发送给的IP和端口
- delay_ms(1000);delay_ms(1000);delay_ms(1000);delay_ms(1000);
- printf("AT+CIPSEND\r\n");
- delay_ms(1000);
- printf("SIM800发送给电脑的数据");
- delay_ms(1000);
- printf("%c",0x1a);
- delay_ms(1000);
-
- printf("AT+CIPCLOSE=1\r\n");
- delay_ms(1000);
-
- printf("AT+CIPSHUT\r\n");
- delay_ms(1000);
-
- }
- }
复制代码
所有资料51hei提供下载:
STM32 GPRS通讯 V2.0.rar
(301.48 KB, 下载次数: 23)
|