QuakeGod
2024-07-27 842bb64195f958b050867c50db66fc0aa413dafb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/**
  ******************************************************************************
  * @file           : ATModem.c
  * @brief          : AT Modem Protocol program body
  ******************************************************************************
    */
#include "ATModem.h"
 
 
void ATInit(stATModemDef * pATModem, ATSendPktDef pFunc1)
{
    pATModem->ATSendPktFunc = pFunc1;
 
    return;
}
void ATSetCallBack(stATModemDef * pATModem, ATSendPktDef pFunc1)
{
    pATModem->ATSendPktFunc = pFunc1;
    return;
}
 
int ATParsePacket(stATModemDef * pATModem, char * pBuf, uchar len1)
{
    return 0;
}
void ATProcess(stATModemDef * pATModem)
{
    
}