REDAC HybridController
Firmware for LUCIDAC/REDAC Teensy
Loading...
Searching...
No Matches
run_manager.cpp
Go to the documentation of this file.
1#include "run/run_manager.h"
2#include "mode/counters.h"
3
4#include <Arduino.h>
5#include <cmath>
6#include <cstdlib>
7
8#include <daq/daq.h>
9#include <utils/logging.h>
10
11// This is an interim hacky solution to introduce another kind of RunDataHandler
12#include <protocol/protocol_oob.h>
13
14void run::Run::run(RunStateChangeHandler *state_change_handler,
15 RunDataHandler *run_data_handler,
16 client::StreamingRunDataNotificationHandler *alt_run_data_handler) {
17
18 throw "run::Run::run not yet implemented";
19 // or is there any reason to behave as if we set OP/IC and do data aquisition
20 // without having any simulator behind it?
21}