modem.c
来自「指纹识别源代码,用于智能门紧,还有配合MF800卡使用」· C语言 代码 · 共 28 行
C
28 行
#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 + =
减小字号Ctrl + -
显示快捷键?