AT-Command/samples/linux/include/at_device.h

23 lines
606 B
C
Raw Permalink Normal View History

2022-12-31 14:42:31 +00:00
/******************************************************************************
* @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