Add Firmware Directory

This commit is contained in:
Xphalnos 2025-06-20 20:40:27 +02:00
parent 4d4f0c8490
commit b552608b83
2 changed files with 8 additions and 3 deletions

View file

@ -11,9 +11,10 @@ namespace Base {
namespace FS {
enum class PathType {
BinaryDir, // Binary Path
RootDir, // Execution Path
LogDir, // Where log files are stored
BinaryDir, // Binary Path
FirmwareDir, // Where log files are stored
RootDir, // Execution Path
LogDir, // Where log files are stored
};
enum FileType {
@ -29,6 +30,8 @@ typedef struct _FileInfo {
FileType fileType; // File Type (directory/file)
} FileInfo;
constexpr auto FW_DIR = "firmware";
constexpr auto LOG_DIR = "log";
constexpr auto LOG_FILE = "pound_log.txt";