mirror of
https://github.com/BotChain-Robots/firmware.git
synced 2026-07-08 17:47:21 +02:00
Initial TCP server
This commit is contained in:
21
components/config/include/ConfigManager.h
Normal file
21
components/config/include/ConfigManager.h
Normal file
@@ -0,0 +1,21 @@
|
||||
//
|
||||
// Created by Johnathon Slightham on 2025-06-12.
|
||||
//
|
||||
|
||||
#ifndef CONFIGMANAGER_H
|
||||
#define CONFIGMANAGER_H
|
||||
|
||||
#include "constants/config.h"
|
||||
|
||||
class ConfigManager {
|
||||
public:
|
||||
static void init_config();
|
||||
|
||||
static uint16_t get_module_id();
|
||||
static ModuleType get_module_type();
|
||||
|
||||
static void set_module_id(uint16_t id);
|
||||
static void set_module_type(ModuleType type);
|
||||
};
|
||||
|
||||
#endif //CONFIGMANAGER_H
|
||||
Reference in New Issue
Block a user