2019-11-27 22:16:07 +01:00
|
|
|
/* configmanager persists runtime configuration using NVRAM of ESP32*/
|
|
|
|
|
|
|
|
#include "globals.h"
|
2020-03-29 18:08:52 +02:00
|
|
|
#include "configmanager.h"
|
2019-11-27 22:16:07 +01:00
|
|
|
|
|
|
|
// Local logging tag
|
2020-10-02 23:07:24 +02:00
|
|
|
static const char TAG[] = __FILE__;
|
|
|
|
|
|
|
|
#define PAYLOADMASK \
|
|
|
|
((GPS_DATA | ALARM_DATA | MEMS_DATA | COUNT_DATA | SENSOR1_DATA | \
|
|
|
|
SENSOR2_DATA | SENSOR3_DATA) & \
|
|
|
|
(~BATT_DATA))
|
|
|
|
|
|
|
|
// namespace for device runtime preferences
|
|
|
|
#define DEVCONFIG "paxcntcfg"
|
|
|
|
|
|
|
|
Preferences nvram;
|
|
|
|
|
2020-10-04 19:10:36 +02:00
|
|
|
static const uint8_t cfgMagicBytes[] = {0x21, 0x76, 0x87, 0x32, 0xf4};
|
2020-10-04 13:15:17 +02:00
|
|
|
static const size_t cfgLen = sizeof(cfg), cfgLen2 = sizeof(cfgMagicBytes);
|
2020-10-04 19:10:36 +02:00
|
|
|
static uint8_t buffer[cfgLen + cfgLen2];
|
2020-10-03 12:14:07 +02:00
|
|
|
|
2020-10-04 19:10:36 +02:00
|
|
|
// populate runtime config with device factory settings
|
2020-10-04 19:32:22 +02:00
|
|
|
//
|
|
|
|
// configuration frame structure in NVRAM;
|
|
|
|
// 1. version header [10 bytes, containing version string]
|
2020-10-04 23:22:48 +02:00
|
|
|
// 2. user settings [cfgLen bytes, containing default runtime settings
|
|
|
|
// (configData_t cfg)]
|
2020-10-04 19:32:22 +02:00
|
|
|
// 3. magicByte [cfgLen2 bytes, containing a fixed identifier]
|
2020-10-03 12:14:07 +02:00
|
|
|
|
2020-10-05 12:49:54 +02:00
|
|
|
static void defaultConfig(configData_t *myconfig) {
|
2020-10-04 19:32:22 +02:00
|
|
|
memcpy(myconfig->version, &PROGVERSION, 10); // Firmware version
|
2020-10-05 12:49:54 +02:00
|
|
|
|
|
|
|
// device factory settings
|
2020-10-02 23:07:24 +02:00
|
|
|
myconfig->loradr = LORADRDEFAULT; // 0-15, lora datarate, see paxcounter.conf
|
|
|
|
myconfig->txpower = LORATXPOWDEFAULT; // 0-15, lora tx power
|
|
|
|
myconfig->adrmode = 1; // 0=disabled, 1=enabled
|
|
|
|
myconfig->screensaver = 0; // 0=disabled, 1=enabled
|
|
|
|
myconfig->screenon = 1; // 0=disabled, 1=enabled
|
|
|
|
myconfig->countermode =
|
|
|
|
COUNTERMODE; // 0=cyclic, 1=cumulative, 2=cyclic confirmed
|
|
|
|
myconfig->rssilimit = 0; // threshold for rssilimiter, negative value!
|
|
|
|
myconfig->sendcycle = SENDCYCLE; // payload send cycle [seconds/2]
|
|
|
|
myconfig->wifichancycle =
|
2019-11-27 22:16:07 +01:00
|
|
|
WIFI_CHANNEL_SWITCH_INTERVAL; // wifi channel switch cycle [seconds/100]
|
2020-10-02 23:07:24 +02:00
|
|
|
myconfig->blescantime =
|
2020-10-05 12:49:54 +02:00
|
|
|
BLESCANINTERVAL /
|
|
|
|
10; // BT channel scan cycle [seconds/100], default 1 (= 10ms)
|
2020-10-02 23:07:24 +02:00
|
|
|
myconfig->blescan = 1; // 0=disabled, 1=enabled
|
|
|
|
myconfig->wifiscan = 1; // 0=disabled, 1=enabled
|
|
|
|
myconfig->wifiant = 0; // 0=internal, 1=external (for LoPy/LoPy4)
|
2020-10-05 13:56:41 +02:00
|
|
|
myconfig->vendorfilter = VENDORFILTER; // 0=disabled, 1=enabled
|
|
|
|
myconfig->rgblum = RGBLUMINOSITY; // RGB Led luminosity (0..100%)
|
|
|
|
myconfig->monitormode = 0; // 0=disabled, 1=enabled
|
|
|
|
myconfig->payloadmask = PAYLOADMASK; // all payload switched on
|
|
|
|
myconfig->enscount = 0; // 0=disabled, 1=enabled
|
2020-10-03 12:14:07 +02:00
|
|
|
|
2020-10-02 23:07:24 +02:00
|
|
|
#ifdef HAS_BME680
|
|
|
|
// initial BSEC state for BME680 sensor
|
|
|
|
myconfig->bsecstate[BSEC_MAX_STATE_BLOB_SIZE] = {0};
|
|
|
|
#endif
|
2019-11-27 22:16:07 +01:00
|
|
|
}
|
|
|
|
|
2020-10-04 19:25:49 +02:00
|
|
|
// migrate runtime configuration from earlier to current version
|
2020-10-04 19:10:36 +02:00
|
|
|
static void migrateConfig(void) {
|
2020-10-04 23:22:48 +02:00
|
|
|
// currently no configuration migration rules are implemented
|
2020-10-04 19:10:36 +02:00
|
|
|
}
|
|
|
|
|
2019-11-27 22:16:07 +01:00
|
|
|
// save current configuration from RAM to NVRAM
|
2020-10-02 23:07:24 +02:00
|
|
|
void saveConfig(bool erase) {
|
2020-10-04 13:15:17 +02:00
|
|
|
ESP_LOGI(TAG, "Storing settings to NVRAM...");
|
2019-11-27 22:16:07 +01:00
|
|
|
|
2020-10-02 23:07:24 +02:00
|
|
|
nvram.begin(DEVCONFIG, false);
|
2019-11-27 22:16:07 +01:00
|
|
|
|
2020-10-02 23:07:24 +02:00
|
|
|
if (erase) {
|
2020-10-04 13:15:17 +02:00
|
|
|
ESP_LOGI(TAG, "Resetting device to factory settings");
|
2020-10-02 23:07:24 +02:00
|
|
|
nvram.clear();
|
|
|
|
defaultConfig(&cfg);
|
2019-11-27 22:16:07 +01:00
|
|
|
}
|
|
|
|
|
2020-10-04 13:15:17 +02:00
|
|
|
// Copy device runtime config cfg to byte array, padding it with magicBytes
|
2020-10-02 23:07:24 +02:00
|
|
|
memcpy(buffer, &cfg, cfgLen);
|
2020-10-04 13:15:17 +02:00
|
|
|
memcpy(buffer + cfgLen, &cfgMagicBytes, cfgLen2);
|
|
|
|
|
|
|
|
// save byte array to NVRAM, padding with cfg magicbyes
|
|
|
|
if (nvram.putBytes(DEVCONFIG, buffer, cfgLen + cfgLen2))
|
|
|
|
ESP_LOGI(TAG, "Device settings saved");
|
|
|
|
else
|
|
|
|
ESP_LOGE(TAG, "NVRAM Error, device settings not saved");
|
2020-10-02 23:07:24 +02:00
|
|
|
|
|
|
|
nvram.end();
|
2019-11-27 22:16:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// load configuration from NVRAM into RAM and make it current
|
2020-10-04 13:15:17 +02:00
|
|
|
bool loadConfig() {
|
2019-11-27 22:16:07 +01:00
|
|
|
|
2020-10-04 19:25:49 +02:00
|
|
|
ESP_LOGI(TAG, "Loading device configuration from NVRAM...");
|
2019-11-27 22:16:07 +01:00
|
|
|
|
2020-10-02 23:07:24 +02:00
|
|
|
if (!nvram.begin(DEVCONFIG, true)) {
|
2020-10-04 19:25:49 +02:00
|
|
|
ESP_LOGI(TAG, "NVRAM initialized, device starts with factory settings");
|
2020-10-02 23:07:24 +02:00
|
|
|
eraseConfig();
|
2020-10-04 13:15:17 +02:00
|
|
|
return true;
|
2020-10-04 19:10:36 +02:00
|
|
|
}
|
2020-10-04 13:15:17 +02:00
|
|
|
|
2020-10-04 19:10:36 +02:00
|
|
|
// simple check that runtime config data matches
|
|
|
|
if (nvram.getBytesLength(DEVCONFIG) != (cfgLen + cfgLen2)) {
|
|
|
|
ESP_LOGE(TAG, "Configuration invalid");
|
|
|
|
return false;
|
2019-11-27 22:16:07 +01:00
|
|
|
}
|
2020-10-04 19:10:36 +02:00
|
|
|
|
|
|
|
// load device runtime config from nvram and copy it to byte array
|
|
|
|
nvram.getBytes(DEVCONFIG, buffer, cfgLen + cfgLen2);
|
|
|
|
nvram.end();
|
2020-10-04 13:15:17 +02:00
|
|
|
|
2020-10-04 19:10:36 +02:00
|
|
|
// validate loaded configuration by checking magic bytes at end of array
|
|
|
|
if (memcmp(buffer + cfgLen, &cfgMagicBytes, cfgLen2) != 0) {
|
|
|
|
ESP_LOGW(TAG, "No configuration found");
|
|
|
|
return false;
|
2019-11-27 22:16:07 +01:00
|
|
|
}
|
2020-10-04 19:10:36 +02:00
|
|
|
|
|
|
|
// copy loaded configuration into runtime cfg struct
|
|
|
|
memcpy(&cfg, buffer, cfgLen);
|
|
|
|
ESP_LOGI(TAG, "Runtime configuration v%s loaded", cfg.version);
|
|
|
|
|
|
|
|
// check if config version matches current firmware version
|
|
|
|
switch (version_compare(PROGVERSION, cfg.version)) {
|
|
|
|
case -1: // device configuration belongs to newer than current firmware
|
2020-10-04 19:25:49 +02:00
|
|
|
ESP_LOGE(TAG, "Incompatible device configuration");
|
2020-10-04 19:10:36 +02:00
|
|
|
return false;
|
|
|
|
case 1: // device configuration belongs to older than current firmware
|
2020-10-04 19:25:49 +02:00
|
|
|
ESP_LOGW(TAG, "Device was updated, attempt to migrate configuration");
|
2020-10-04 19:10:36 +02:00
|
|
|
migrateConfig();
|
|
|
|
return true;
|
|
|
|
default: // device configuration version matches current firmware version
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// helper function to convert strings into lower case
|
|
|
|
bool comp(char s1, char s2) { return (tolower(s1) < tolower(s2)); }
|
|
|
|
|
|
|
|
// helper function to lexicographically compare two versions. Returns 1 if v2
|
|
|
|
// is smaller, -1 if v1 is smaller, 0 if equal
|
|
|
|
int version_compare(const String v1, const String v2) {
|
|
|
|
|
|
|
|
if (v1 == v2)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
const char *a1 = v1.c_str(), *a2 = v2.c_str();
|
|
|
|
|
2020-10-04 19:25:49 +02:00
|
|
|
if (std::lexicographical_compare(a1, a1 + strlen(a1), a2, a2 + strlen(a2),
|
|
|
|
comp))
|
2020-10-04 19:10:36 +02:00
|
|
|
return -1;
|
|
|
|
else
|
|
|
|
return 1;
|
2020-10-02 23:07:24 +02:00
|
|
|
}
|
|
|
|
|
2020-10-04 19:10:36 +02:00
|
|
|
void eraseConfig(void) { saveConfig(true); }
|