mirror of
https://github.com/BotChain-Robots/firmware.git
synced 2026-07-08 09:37:21 +02:00
19 lines
369 B
C++
19 lines
369 B
C++
#ifndef REMOTECONFIG_H
|
|
#define REMOTECONFIG_H
|
|
|
|
#include <memory>
|
|
|
|
#include "MessagingInterface.h"
|
|
#include "control/ActuatorFactory.h"
|
|
#include "control/IActuator.h"
|
|
#include "util/ring_buffer.h"
|
|
|
|
class RemoteConfig {
|
|
public:
|
|
static void register_calls(MessagingInterface &messaging_interface, ConfigManager& config_manager);
|
|
private:
|
|
|
|
};
|
|
|
|
#endif // REMOTECONFIG_H
|