新手上路
- 积分
- 33
- 金钱
- 33
- 注册时间
- 2016-1-20
- 在线时间
- 3 小时
|
u32 time;
SysTick_Config(SystemCoreClock / 1000);
delay_ms(200);
NVIC_Configuration();
uart_init(9600);
GUI_Init();
GUI_SetBkColor(GUI_WHITE);
GUI_SetColor(GUI_RED);
GUI_Clear();
GUI_SetFont(&GUI_Font24_1);
LED0=0;
MQ2_Init();
DS18B20_Init();
time = 0;
delay_ms(3000);
printf("AT+CSCS=\"GSM\"\r\n");
delay_ms(3000);
printf("AT+CMGF=1\r\n");
delay_ms(3000);
printf("AT+CMGS=\"18060614154\"\r\n");
delay_ms(5000);
printf("THIS IS GSM SIM900A TEST!\r\n");
delay_ms(3000);
USART_SendData(USART1,0x1a);
delay_ms(3000);
|
|