diff options
author | lonkaars <loek@pipeframe.xyz> | 2023-01-07 13:47:41 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2023-01-07 13:47:41 +0100 |
commit | 847b4a5d588ec504865398c21c3bcb73a6fc1fab (patch) | |
tree | bfa918685909acb19731db434277613867d858ac /shared/protocol.h | |
parent | b25530da670709e7d54afd70fe33e1dd6368d45e (diff) |
implement get node
Diffstat (limited to 'shared/protocol.h')
-rw-r--r-- | shared/protocol.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/protocol.h b/shared/protocol.h index 3ec9838..c742c82 100644 --- a/shared/protocol.h +++ b/shared/protocol.h @@ -171,7 +171,7 @@ static size_t (* const CD_CMD_HANDLERS_SIZEOF[CD_CMD_COUNT])(cd_s_bin*) = { /** @brief stores message handlers in array with opcode as index */ static cd_cmd_handler_t* const CD_CMD_HANDLERS[CD_CMD_COUNT] = { [CD_CMD_PING] = &cd_cmd_ping, // implemented - [CD_CMD_GET_NODE] = &cd_cmd_get_node, + [CD_CMD_GET_NODE] = &cd_cmd_get_node, // implemented [CD_CMD_POST_LED] = &cd_cmd_post_led, [CD_CMD_POST_LINK] = &cd_cmd_post_link, // implemented [CD_CMD_POST_NET] = &cd_cmd_post_net, |