Корректируем название файлов для Linux

This commit is contained in:
2022-10-05 20:53:27 +03:00
parent c9a386c01b
commit f32b05dd5b
3 changed files with 4 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
#include "Global.h" #include "Global.h"
#ifdef ESP32 #ifdef ESP32
#if USE_LITTLEFS #if USE_LITTLEFS
#include <LITTLEFS.h> #include <LittleFS.h>
#define FileFS LittleFS #define FileFS LittleFS
#define FS_NAME "LittleFS_32" #define FS_NAME "LittleFS_32"
#define CONFIG_LITTLEFS_SPIFFS_COMPAT 1 #define CONFIG_LITTLEFS_SPIFFS_COMPAT 1

View File

@@ -1,7 +1,7 @@
#include "NTP.h" #include "NTP.h"
#include "Global.h" #include "Global.h"
#include "Utils\SerialPrint.h" #include "utils/SerialPrint.h"
void ntpInit() { void ntpInit() {
synchTime(); synchTime();

View File

@@ -1,6 +1,6 @@
#include "Utils\TimeUtils.h" #include "utils/TimeUtils.h"
#include "Global.h" #include "Global.h"
#include "Utils\StringUtils.h" #include "utils/StringUtils.h"
static const char* TIME_FORMAT PROGMEM = "%02d:%02d:%02d"; static const char* TIME_FORMAT PROGMEM = "%02d:%02d:%02d";
static const char* TIME_FORMAT_WITH_DAYS PROGMEM = "%dd %02d:%02d"; static const char* TIME_FORMAT_WITH_DAYS PROGMEM = "%dd %02d:%02d";