REDAC HybridController
Firmware for LUCIDAC/REDAC Teensy
Loading...
Searching...
No Matches
tblock.cpp
Go to the documentation of this file.
1#include <proto/main.pb.h>
2#include <redac/tblock.h>
3#include <cassert>
4
5using namespace blocks;
6
7
8TBlock *TBlock::from_entity_classifier(entities::EntityClassifier classifier, bus::addr_t block_address) {
9 return new TBlock(new DummyTBlockHAL());
10}
11
12TBlockBackplane *TBlockBackplane::from_entity_classifier(entities::EntityClassifier classifier, bus::addr_t block_address) {
13 return new TBlockBackplane(new DummyTBlockBackplaneHAL());
14}