aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2023-01-06 15:31:13 +0100
committerlonkaars <loek@pipeframe.xyz>2023-01-06 15:31:13 +0100
commitb25530da670709e7d54afd70fe33e1dd6368d45e (patch)
tree2277b76b299df1b8c2a6ae3c3d1629e1eddef5c0
parentb155a5fa4b97f6f5f63f7079c671b5965db9d022 (diff)
add implementation status to protocol.h
-rw-r--r--shared/protocol.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/shared/protocol.h b/shared/protocol.h
index b9a2c93..3ec9838 100644
--- a/shared/protocol.h
+++ b/shared/protocol.h
@@ -170,12 +170,12 @@ 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,
+ [CD_CMD_PING] = &cd_cmd_ping, // implemented
[CD_CMD_GET_NODE] = &cd_cmd_get_node,
[CD_CMD_POST_LED] = &cd_cmd_post_led,
- [CD_CMD_POST_LINK] = &cd_cmd_post_link,
+ [CD_CMD_POST_LINK] = &cd_cmd_post_link, // implemented
[CD_CMD_POST_NET] = &cd_cmd_post_net,
- [CD_CMD_RESPONSE] = &cd_cmd_response,
+ [CD_CMD_RESPONSE] = &cd_cmd_response, // WIP
};
#ifdef __cplusplus