CaCO3 3 лет назад
Родитель
Сommit
bf44745342
2 измененных файлов с 2 добавлено и 2 удалено
  1. 1 1
      code/components/jomjol_helper/Helper.h
  2. 1 1
      code/main/main.cpp

+ 1 - 1
code/components/jomjol_helper/Helper.h

@@ -70,7 +70,7 @@ string getMac(void);
 
 /* Error bit fields
    One bit per error
-   Make sure it matches https://github.com/jomjol/AI-on-the-edge-device/wiki/Error-Codes */
+   Make sure it matches https://jomjol.github.io/AI-on-the-edge-device-docs/Error-Codes */
 enum SystemStatusFlag_t {          // One bit per error
     // First Byte
     SYSTEM_STATUS_PSRAM_BAD         = 1 << 0, //  1, Critical Error

+ 1 - 1
code/main/main.cpp

@@ -247,7 +247,7 @@ extern "C" void app_main(void)
 
     if (getHTMLcommit().substr(0, 7) != std::string(GIT_REV).substr(0, 7)) { // Compare the first 7 characters of both hashes
         LogFile.WriteToFile(ESP_LOG_WARN, TAG, std::string("Web UI version (") + getHTMLcommit() + ") does not match firmware version (" + std::string(GIT_REV) + ") !");
-        LogFile.WriteToFile(ESP_LOG_WARN, TAG, "Please make sure to setup the SD-Card properly (check the wiki) or re-install using the update_*.zip!");    
+        LogFile.WriteToFile(ESP_LOG_WARN, TAG, "Please make sure to setup the SD-Card properly (check the documentation) or re-install using the AI-on-the-edge-device__update__*.zip!");    
     }
 
     std::string zw = getCurrentTimeString("%Y%m%d-%H%M%S");