mirror of
https://github.com/BotChain-Robots/firmware.git
synced 2026-07-08 17:47:21 +02:00
22 lines
283 B
C++
22 lines
283 B
C++
//
|
|
// Created by Johnathon Slightham on 2025-07-05.
|
|
//
|
|
|
|
#ifndef LOOPMANAGER_H
|
|
#define LOOPMANAGER_H
|
|
|
|
#include "control/IActuator.h"
|
|
#include "control/ActuatorFactory.h"
|
|
|
|
class LoopManager {
|
|
public:
|
|
[[noreturn]] static void control_loop();
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif //LOOPMANAGER_H
|