| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /*
- * Copyright (c) 2006-2023, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2020-05-22 shuobatian first version
- */
- #ifndef __AT_DEVICE_N21_H__
- #define __AT_DEVICE_N21_H__
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include <stdlib.h>
- #include <at_device.h>
- /* The maximum number of sockets supported by the N21 device */
- #define AT_DEVICE_N21_SOCKETS_NUM 4
- struct at_device_n21
- {
- char *device_name;
- char *client_name;
- int power_pin;
- int power_status_pin;
- size_t recv_line_num;
- struct at_device device;
- void *user_data;
- };
- #ifdef AT_USING_SOCKET
- /* n21 device socket initialize */
- int n21_socket_init(struct at_device *device);
- /* n21 device class socket register */
- int n21_socket_class_register(struct at_device_class *class);
- #endif /* AT_USING_SOCKET */
- #ifdef __cplusplus
- }
- #endif
- #endif /* __AT_DEVICE_N21_H__ */
|