REDAC HybridController
Firmware for LUCIDAC/REDAC Teensy
Loading...
Searching...
No Matches
ctrlblock.h
Go to the documentation of this file.
1// Copyright (c) 2024 anabrid GmbH
2// Contact: https://www.anabrid.com/licensing/
3//
4// SPDX-License-Identifier: MIT OR GPL-2.0-or-later
5
6#pragma once
7
8#include <block/ctrlblock.h>
9
10namespace blocks {
11
12class DummyCTRLBlockHAL : public CTRLBlockHALBase {
13public:
15
16 bool write_adc_bus_muxers(ADCBus adc_bus) override;
17
18 bool write_sync_id(uint8_t id) override;
19
20 metadata::eui_t get_entity_eui() const override { return {}; }
21};
22
23} // namespace blocks
bool write_sync_id(uint8_t id) override
Definition ctrlblock.cpp:16
bool write_adc_bus_muxers(ADCBus adc_bus) override
Definition ctrlblock.cpp:14
metadata::eui_t get_entity_eui() const override
Definition ctrlblock.h:20