| 10 | #include "phase_handler.h" |
| 11 | |
| 12 | void PhaseHandler::Init() |
| 13 | { |
| 14 | phase_executors[phase_t::busfree] = [this] () { BusFree(); }; |
| 15 | phase_executors[phase_t::selection] = [this] () { Selection(); }; |
| 16 | phase_executors[phase_t::dataout] = [this] () { DataOut(); }; |
| 17 | phase_executors[phase_t::datain] = [this] () { DataIn(); }; |
| 18 | phase_executors[phase_t::command] = [this] () { Command(); }; |
| 19 | phase_executors[phase_t::status] = [this] () { Status(); }; |
| 20 | phase_executors[phase_t::msgout] = [this] () { MsgOut(); }; |
| 21 | phase_executors[phase_t::msgin] = [this] () { MsgIn(); }; |
| 22 | } |
no outgoing calls
no test coverage detected