Clean up baseband processors to each have a main().

This commit is contained in:
Jared Boone 2016-07-24 21:42:11 -07:00
parent c8ffea0098
commit fe1a6c09bb
10 changed files with 16 additions and 36 deletions

View file

@ -58,7 +58,8 @@ void TPMSProcessor::execute(const buffer_c8_t& buffer) {
}
}
void run() {
int main() {
EventDispatcher event_dispatcher { std::make_unique<TPMSProcessor>() };
event_dispatcher.run();
return 0;
}