📄 modem.c
字号:
#include "reg58.h"
#define _MODEM_C_
#include "modem.h"
#include "system.h"
#include "timer.h"
#include "sram.h"
#include "rxd.h"
#include "system.h"
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
void init_modem()
{
send_atz();
}
void send_atz()
{
uart0buff[0]='A';
uart0buff[1]='T';
uart0buff[2]='Z';
uart0buff[3]=0XD;
sendstring1(4);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -