Small code refactor and began using freertos tasks

This commit is contained in:
2024-08-20 18:06:07 -04:00
parent 2074fd6b73
commit 64e84ad531
4 changed files with 135 additions and 64 deletions

13
include/COMMANDS.h Normal file
View File

@@ -0,0 +1,13 @@
#pragma once
#include <cstdint>
/**
* @brief These are the serial commands that the board supports
*/
enum Commands : uint8_t{
BoardState = 0,
PING = 1,
SetStackColors = 2,
GoToIdle = 3
};