-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcmd_handlers.h
68 lines (54 loc) · 1.6 KB
/
cmd_handlers.h
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/**
* @file
* @copyright 2022 Silicon Laboratories Inc.
*/
#ifndef CMD_HANDLER_H_
#define CMD_HANDLER_H_
#include <stdint.h>
#include <comm_interface.h>
#ifdef ZW_CONTROLLER
#include <ZW_controller_api.h>
#endif
/**
* @addtogroup Apps
* @{
* @addtogroup SerialAPI
* @{
*/
typedef void (*cmd_handler_t)(const comm_interface_frame_ptr);
typedef struct
{
uint8_t cmd;
cmd_handler_t pHandler;
}
cmd_handler_map_t;
#define CMD_HANDLER_SECTION "zw_cmd_handlers"
#define ZW_ADD_CMD(cmd) \
static void cmd_handler_fcn_##cmd(__attribute__((unused)) const comm_interface_frame_ptr frame); /* Prototype */ \
static const cmd_handler_map_t cmd_handler_##cmd __attribute__((__used__, __section__( CMD_HANDLER_SECTION ))) = {cmd,cmd_handler_fcn_##cmd}; \
static void cmd_handler_fcn_##cmd(__attribute__((unused)) const comm_interface_frame_ptr frame)
/**
* Invoke command handler.
*
* @param[in] frame Frame
* @return true if handler for given @p frame was invoked, false if no handler was found
*/
bool invoke_cmd_handler(const comm_interface_frame_ptr frame);
typedef bool (*cmd_foreach_callback_t)(cmd_handler_map_t const * const p_cmd_entry, uint8_t* supported_cmds_mask);
/**
* Invokes callback for each registered command.
*
* Will stop if the callback returns true.
*
* @param callback Callback function to invoke.
* @param context Context to pass on to the callback function.
*/
void cmd_foreach(cmd_foreach_callback_t callback, uint8_t* supported_cmds_mask);
#ifdef ZW_CONTROLLER
void ZCB_ComplHandler_ZW_NodeManagement(LEARN_INFO_T *statusInfo);
#endif
/**
* @}
* @}
*/
#endif /* CMD_HANDLER_H_ */