mirror of
https://github.com/BotChain-Robots/firmware.git
synced 2026-07-09 01:57:21 +02:00
16 lines
307 B
C
16 lines
307 B
C
//
|
|
// Created by Johnathon Slightham on 2025-06-12.
|
|
//
|
|
|
|
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
#define NVS_FLASH_NAMESPACE "app"
|
|
#define DEFAULT_MODULE_ID 0
|
|
#define DEFAULT_MODULE_TYPE 0
|
|
|
|
#define MODULE_ID_KEY "module_id"
|
|
#define MODULE_TYPE_KEY "module_type"
|
|
|
|
#endif //CONFIG_H
|