blob: 866d5c21637f951c6c8799d86d229447e78a3647 [file] [log] [blame]
you.chen2f5cd7b2023-03-20 19:06:08 +08001/**
2 * @file shm.h
3 * @author hq
4 * @brief
5 * @version 1.0
6 * @date 2022-12-16
7 *
8 * @copyright Copyright (c) 2022
9 *
10 */
11#ifndef __LYNQ_URC_SOCKET__
12#define __LYNQ_URC_SOCKET__
13
14#ifdef __cplusplus
15extern "C" {
16#endif
17int lynq_open_broadcast_urc_socket();
18int lynq_broadcast_urc_msg(void * msg, int size);
19int lynq_register_urc_socket();
20int lynq_recv_urc_msg(void * buffer, int size);
21#ifdef __cplusplus
22}
23#endif
24#endif //#ifndef __LYNQ_URC_SOCKET__