75 lines
1.9 KiB
C
75 lines
1.9 KiB
C
/**
|
|
@file system.h
|
|
|
|
@brief system library
|
|
|
|
@author Miroslav Pivovarsky
|
|
Contact: miroslav.pivovarsky@gmail.com
|
|
|
|
@bug: no know bug
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <WiFi.h>
|
|
#include <Update.h>
|
|
#include <Arduino.h>
|
|
#include <WiFiClientSecure.h>
|
|
#include <HTTPClient.h>
|
|
#include <HTTPUpdate.h>
|
|
#include <ArduinoJson.h>
|
|
#include <esp_wifi.h>
|
|
#include <esp_task_wdt.h>
|
|
|
|
#if defined(CONFIG_IDF_TARGET_ESP32)
|
|
#include "esp32/rom/rtc.h"
|
|
#elif defined(CONFIG_IDF_TARGET_ESP32S3)
|
|
#include "esp32s3/rom/rtc.h"
|
|
#else
|
|
#error "Unsupported chip target"
|
|
#endif
|
|
|
|
#include "mcu_cfg.h"
|
|
#include "var.h"
|
|
#include "cfg.h"
|
|
#include "log.h"
|
|
#include "Certificate_ota.h"
|
|
#include "wifi_mngt.h"
|
|
#include "connect.h"
|
|
#include "serial_cfg.h"
|
|
#include "sys_led.h"
|
|
#include "ExternalTemperatureSensor.h"
|
|
|
|
#define SYSTEM_MSG_UPDATE_DONE F("FW update successfully done! Please reboot the MCU.")
|
|
#define SYSTEM_MSG_UPDATE_FAIL F("FW update failed! Please reboot MCU, and try again.")
|
|
#define SYSTEM_MSG_UPDATE_PROCESS F("FW update in progress")
|
|
#define SYSTEM_MSG_UPDATE_NO_FW F("No new FW version available!")
|
|
|
|
void System_Init();
|
|
void System_LoadCfg();
|
|
bool System_CheckIfPsramIsUsed();
|
|
void System_Main();
|
|
void System_UpdateInit();
|
|
|
|
void System_CheckNewVersion();
|
|
void System_OtaCloudUpdate();
|
|
bool System_OtaUpdateStart();
|
|
void System_OtaUpdateProgressCB(int, int);
|
|
void System_OtaUpdateErrorCB(int);
|
|
void System_OtaUpdateEndCB();
|
|
void System_OtaUpdateStartCB();
|
|
|
|
String System_PrintMcuResetReason(int);
|
|
String System_printMcuResetReasonSimple();
|
|
|
|
void System_TaskWifiManagement(void *);
|
|
void System_TaskMain(void *);
|
|
void System_TaskCaptureAndSendPhoto(void *);
|
|
void System_TaskSdCardCheck(void *);
|
|
void System_TaskSerialCfg(void *);
|
|
void System_TaskSystemTelemetry(void *);
|
|
void System_TaskSysLed(void *);
|
|
void System_TaskWiFiWatchdog(void *);
|
|
void System_TaskSdCardRemove(void *);
|
|
|
|
/* EOF */ |