ESP32-PaxCounter/src/cyclic.cpp

122 lines
3.4 KiB
C++
Raw Normal View History

2018-07-22 20:27:58 +02:00
/* This routine is called by interrupt in regular intervals */
/* Interval can be set in paxcounter.conf (HOMECYCLE) */
// Basic config
2018-10-03 23:07:22 +02:00
#include "cyclic.h"
2018-07-22 20:27:58 +02:00
// Local logging tag
static const char TAG[] = "main";
uint32_t userUTCTime; // Seconds since the UTC epoch
2018-11-16 09:43:47 +01:00
unsigned long nextTimeSync = millis();
2018-07-22 20:27:58 +02:00
// do all housekeeping
2018-09-21 18:23:34 +02:00
void doHousekeeping() {
2018-07-25 00:17:31 +02:00
// update uptime counter
uptime();
2018-07-24 23:25:41 +02:00
2018-09-15 18:59:20 +02:00
// check if update mode trigger switch was set
if (cfg.runmode == 1)
2018-10-17 07:10:37 +02:00
do_reset();
spi_housekeeping();
lora_housekeeping();
2018-11-16 09:43:47 +01:00
// time sync once per TIME_SYNC_INTERVAL
#ifdef TIME_SYNC_INTERVAL
2018-11-16 09:43:47 +01:00
if (millis() >= nextTimeSync) {
2018-12-21 00:35:21 +01:00
nextTimeSync =
millis() + TIME_SYNC_INTERVAL * 60000; // set up next time sync period
2018-11-16 09:43:47 +01:00
do_timesync();
}
#endif
// task storage debugging //
ESP_LOGD(TAG, "Wifiloop %d bytes left",
uxTaskGetStackHighWaterMark(wifiSwitchTask));
ESP_LOGD(TAG, "IRQhandler %d bytes left",
uxTaskGetStackHighWaterMark(irqHandlerTask));
#ifdef HAS_GPS
ESP_LOGD(TAG, "Gpsloop %d bytes left", uxTaskGetStackHighWaterMark(GpsTask));
#endif
2018-11-25 16:05:30 +01:00
#ifdef HAS_BME
ESP_LOGD(TAG, "Bmeloop %d bytes left", uxTaskGetStackHighWaterMark(BmeTask));
#endif
#if (HAS_LED != NOT_A_PIN) || defined(HAS_RGB_LED)
ESP_LOGD(TAG, "LEDloop %d bytes left",
uxTaskGetStackHighWaterMark(ledLoopTask));
#endif
2018-07-22 20:27:58 +02:00
// read battery voltage into global variable
#ifdef HAS_BATTERY_PROBE
batt_voltage = read_voltage();
ESP_LOGI(TAG, "Measured Voltage: %dmV", batt_voltage);
#endif
// check free memory
if (esp_get_minimum_free_heap_size() <= MEM_LOW) {
2018-08-04 14:37:41 +02:00
ESP_LOGI(TAG,
2018-07-22 20:27:58 +02:00
"Memory full, counter cleared (heap low water mark = %d Bytes / "
"free heap = %d bytes)",
esp_get_minimum_free_heap_size(), ESP.getFreeHeap());
SendPayload(COUNTERPORT); // send data before clearing counters
2018-12-21 00:35:21 +01:00
reset_counters(); // clear macs container and reset all counters
get_salt(); // get new salt for salting hashes
2018-08-04 18:09:25 +02:00
if (esp_get_minimum_free_heap_size() <= MEM_LOW) // check again
2018-10-17 07:10:37 +02:00
do_reset(); // memory leak, reset device
2018-07-22 20:27:58 +02:00
}
2018-09-21 18:23:34 +02:00
} // doHousekeeping()
2018-07-23 08:25:23 +02:00
2018-07-23 13:20:06 +02:00
// uptime counter 64bit to prevent millis() rollover after 49 days
uint64_t uptime() {
static uint32_t low32, high32;
uint32_t new_low32 = millis();
if (new_low32 < low32)
high32++;
low32 = new_low32;
return (uint64_t)high32 << 32 | low32;
}
void reset_counters() {
macs.clear(); // clear all macs container
macs_total = 0; // reset all counters
macs_wifi = 0;
macs_ble = 0;
}
void do_timesync() {
#ifdef TIME_SYNC_INTERVAL
2018-12-21 00:35:21 +01:00
// sync time & date by GPS if we have valid gps time
#ifdef HAS_GPS
if (gps.time.isValid()) {
setTime(gps.time.hour(), gps.time.minute(), gps.time.second(),
gps.date.day(), gps.date.month(), gps.date.year());
ESP_LOGI(TAG, "Time synced by GPS to %02d:%02d:%02d", hour(), minute(),
second());
return;
} else {
2018-11-16 09:43:47 +01:00
ESP_LOGI(TAG, "No valid GPS time");
}
2018-11-18 12:09:18 +01:00
#endif // HAS_GPS
2018-12-21 00:35:21 +01:00
// sync time by LoRa Network if network supports DevTimeReq
#ifdef LMIC_ENABLE_DeviceTimeReq
// Schedule a network time request at the next possible time
LMIC_requestNetworkTime(user_request_network_time_callback, &userUTCTime);
ESP_LOGI(TAG, "Network time request scheduled");
2018-12-21 00:35:21 +01:00
#endif
#endif // TIME_SYNC_INTERVAL
2018-11-16 09:43:47 +01:00
} // do_timesync()
2018-07-23 13:20:06 +02:00
#ifndef VERBOSE
int redirect_log(const char *fmt, va_list args) {
// do nothing
return 0;
}
#endif