You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
465 B
24 lines
465 B
/*
|
|
* commands.hpp
|
|
*
|
|
* Created on: Jul 13, 2021
|
|
* Author: Andreas Berthoud
|
|
*/
|
|
|
|
#ifndef COMMANDS_HPP_
|
|
#define COMMANDS_HPP_
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef enum : uint8_t {
|
|
COMMAND_NONE = 0,
|
|
COMMAND_LOG = 0x1,
|
|
COMMAND_HEARTBEAT_REQUEST = 0x2,
|
|
COMMAND_HEARTBEAT_RESPONSE = 0x3,
|
|
COMMAND_LED_REQUEST = 0x4,
|
|
COMMAND_LED_RESPONSE = 0x5,
|
|
COMMAND_GP_REQUEST = 0x6,
|
|
COMMAND_GP_RESPONSE = 0x7,
|
|
} CommandId;
|
|
|
|
#endif /* COMMANDS_HPP_ */
|
|
|