REDAC HybridController
Firmware for LUCIDAC/REDAC Teensy
Loading...
Searching...
No Matches
cblock.h
Go to the documentation of this file.
1#pragma once
2
3#include <block/cblock.h>
4
5namespace blocks {
6
7class DummyCBlockHAL : public CBlockHAL {
8public:
9 DummyCBlockHAL(std::array<const uint8_t, 32> f_coeffs_cs){};
10
11 bool write_factor(uint8_t idx, float value) override;
12
13 metadata::eui_t get_entity_eui() const override { return {}; }
14};
15
16} // namespace blocks
bool write_factor(uint8_t idx, float value) override
Definition cblock.cpp:13
DummyCBlockHAL(std::array< const uint8_t, 32 > f_coeffs_cs)
Definition cblock.h:9
metadata::eui_t get_entity_eui() const override
Definition cblock.h:13