mirror of
https://gitee.com/moluo-tech/AT-Command.git
synced 2025-02-05 17:28:23 +08:00
23 lines
606 B
C
23 lines
606 B
C
/******************************************************************************
|
|
* @brief AT命令模拟器
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2022-04-01 Roger.luo 初版
|
|
******************************************************************************/
|
|
#ifndef __AT_DEVICE_H__
|
|
#define __AT_DEVICE_H__
|
|
|
|
void at_device_init(void);
|
|
|
|
void at_device_open(void);
|
|
|
|
void at_device_close(void);
|
|
|
|
unsigned int at_device_write(const void *buf, unsigned int size);
|
|
|
|
unsigned int at_device_read(void *buf, unsigned int size);
|
|
|
|
void at_device_emit_urc(const void *urc, int size);
|
|
|
|
#endif
|