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

Begin developing CyanBus

parent 838d1479
No related branches found
No related tags found
No related merge requests found
#include "CyanBus.hpp"
// C++ system level
#include <cinttypes>
#include <functional>
// ESP32 specific
#include "esp_log.h"
#include "driver/gpio.h"
#include "driver/uart.h"
// project specific
#include "LambdaTask.hpp"
// qthing stuff
// #include ""
static const char* TAG = "CyanBus";
// This leads to ~54 P/s @ 2 MBaud at 100% load
// TODO: Make configurable?!
const uint32_t CyanBusMTU = 4096;
namespace SiliconTorch {
namespace CyanBus {
CyanBus::CyanBus(Reader reader) : reader(reader) {
readerTaskHandle = new SiliconTorch::Util::LambdaTask([&](){ readerTask(); });
}
void CyanBus::readerTask() {
const uint8_t* header = (const uint8_t*)"fxCyan";
while (true) {
ESP_LOGW(TAG, "Hello, ReaderTask()! My header is: %s", header);
vTaskDelay(420);
}
}
void CyanBus::setBaudRate(uint32_t baudRate) {
ESP_LOGE(TAG, "Operation unsupported: setBaudRate(…)");
}
uint32_t CyanBus::getBaudRate() {
ESP_LOGE(TAG, "Operation unsupported: getBaudRate()");
return 1337;
}
}
}
#pragma once
// C++ system level
#include <string>
#include <cinttypes>
#include <functional>
// project specific
#include "LambdaTask.hpp"
namespace SiliconTorch {
namespace CyanBus {
typedef std::function<uint8_t*(uint32_t)> Reader;
class CyanBus {
public:
CyanBus(Reader reader);
// TODO: How do we wanna set baudRates when we only have a reader?!
// TODO: Elaborate on this topic!
uint32_t getBaudRate();
void setBaudRate(uint32_t baudRate);
private:
Reader reader;
void readerTask();
SiliconTorch::Util::LambdaTask* readerTaskHandle = NULL;
};
}
}
......@@ -9,7 +9,7 @@
#include "driver/uart.h"
// project specific
#include "LambdaTask.hpp"
// #include "LambdaTask.hpp"
// qthing stuff
// #include ""
......@@ -75,18 +75,28 @@ namespace SiliconTorch {
uart_set_pin(_ch, tx, rx, UART_PIN_NO_CHANGE, UART_PIN_NO_CHANGE);
uart_set_mode(_ch, UART_MODE_UART);
uart_set_rx_timeout(_ch, 0); // TODO: timeout…??
// TOOD: receive only ATM!
txEN(false);
rxEN(true);
}
void RS485::write(const uint8_t* data, uint32_t length) {
uint32_t send = uart_write_bytes((uart_port_t)uartChannel, reinterpret_cast<const char*>(data), length);
// TODO: remove after change!
ESP_LOGE(TAG, "This class is receive-only atm! TX won't work!");
if (send != length) ESP_LOGE(TAG, "Sending bytes#[ %d ] failed: Only bytes#[ %d ] were send!", length, send);
}
void RS485::write(std::string& data) {
uint32_t send = uart_write_bytes((uart_port_t)uartChannel, data.c_str(), data.length());
// TODO: remove after change!
ESP_LOGE(TAG, "This class is receive-only atm! TX won't work!");
if (send != data.length()) ESP_LOGE(TAG, "Sending bytes#[ %d ] failed: Only bytes#[ %d ] were send!", data.length(), send);
}
......
......@@ -18,25 +18,21 @@ namespace SiliconTorch {
uint32_t getBaudRate();
void setBaudRate(uint32_t baudRate);
void write(std::string& data);
void write(const uint8_t* data, uint32_t length);
uint32_t available();
uint32_t read(uint8_t* data, uint32_t length);
private:
uint8_t uartChannel;
uint8_t tx, rx, de, re;
void txEN(bool state);
void rxEN(bool state);
void txrxEN(bool state);
// Receive only ATM!
void write(std::string& data);
void write(const uint8_t* data, uint32_t length);
};
}
......
// hostname and device namespace
#define DEVICE_NAME "CLC"
#define DEVICE_NAME "CyanLight"
#define NTP_SERVER "pool.ntp.org"
......
......@@ -16,12 +16,14 @@ qthing::Config cfg;
CyanLight::CyanLightControl* ctrl;
void device_main() {
cfg.apply();
ctrl = new CyanLight::CyanLightControl(3);
ctrl = new CyanLight::CyanLightControl(1);
ctrl->addChannel(26);
ctrl->addChannel(25);
ctrl->setFrqRes(100, 19);
......@@ -36,8 +38,8 @@ void device_main() {
}
ctrl->setPWM(0, 0.0f);
ctrl->setPWM(1, 0.0f);
ctrl->setPWM(0, 1.0f);
ctrl->setPWM(1, 1.0f);
ctrl->setPWM(2, 1.0f);
......
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