SAE Teensy ECU
IIT SAE Microcontroller programming
Loading...
Searching...
No Matches
manager.hpp
1#pragma once
2
3namespace Module {
4
5class Manager_t {
6 static bool setupModules();
7 static bool orderModules();
8 static void startModules();
9 static void stopModules();
10 static void restartModules();
11 static void printModules();
12 static void start();
13} ModuleManager;
14
15} // namespace Module