Skip to content
Snippets Groups Projects
Commit 0197aab7 authored by fxk8y's avatar fxk8y :spider:
Browse files

Type stuff

parent 24b72b00
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,12 @@ namespace SiliconTorch {
void CyanBus::readerTask() {
const uint8_t* header = (const uint8_t*)"fxCyan";
uint8_t* buffer = new uint8_t[CyanBusMTU];
enum FSM { SearchHeader };
FSM fsm = SearchHeader;
uint8_t headerIDX = 0;
while (true) {
......@@ -45,7 +51,17 @@ namespace SiliconTorch {
vTaskDelay(420);
continue;
switch (fsm) {
case SearchHeader: {
break;
}
}
}
delete buffer;
}
void CyanBus::setBaudRate(uint32_t baudRate) {
......
......@@ -16,7 +16,7 @@
namespace SiliconTorch {
extern const char *TAG;
extern const char* TAG;
typedef std::function<void()> PacketHandledCallback;
typedef std::function<float(float)> GammaCorrector;
......@@ -67,7 +67,7 @@ namespace SiliconTorch {
uint32_t baseChannel;
uint8_t channelsConfigured = 0;
Impl::PWMChannel **channels;
Impl::PWMChannel** channels;
ledc_timer_config_t timer_cfg;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment