Fork of the espurna firmware for `mhsw` switches
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

166 lines
4.4 KiB

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. /*
  2. SYSTEM MODULE
  3. Copyright (C) 2018 by Xose Pérez <xose dot perez at gmail dot com>
  4. */
  5. #include <EEPROM.h>
  6. // -----------------------------------------------------------------------------
  7. unsigned long _loop_delay = 0;
  8. bool _system_send_heartbeat = false;
  9. // Calculated load average 0 to 100;
  10. unsigned short int _load_average = 100;
  11. // -----------------------------------------------------------------------------
  12. #if SYSTEM_CHECK_ENABLED
  13. // Call this method on boot with start=true to increase the crash counter
  14. // Call it again once the system is stable to decrease the counter
  15. // If the counter reaches SYSTEM_CHECK_MAX then the system is flagged as unstable
  16. // setting _systemOK = false;
  17. //
  18. // An unstable system will only have serial access, WiFi in AP mode and OTA
  19. bool _systemStable = true;
  20. void systemCheck(bool stable) {
  21. unsigned char value = EEPROM.read(EEPROM_CRASH_COUNTER);
  22. if (stable) {
  23. value = 0;
  24. DEBUG_MSG_P(PSTR("[MAIN] System OK\n"));
  25. } else {
  26. if (++value > SYSTEM_CHECK_MAX) {
  27. _systemStable = false;
  28. value = 0;
  29. DEBUG_MSG_P(PSTR("[MAIN] System UNSTABLE\n"));
  30. }
  31. }
  32. EEPROM.write(EEPROM_CRASH_COUNTER, value);
  33. EEPROM.commit();
  34. }
  35. bool systemCheck() {
  36. return _systemStable;
  37. }
  38. void systemCheckLoop() {
  39. static bool checked = false;
  40. if (!checked && (millis() > SYSTEM_CHECK_TIME)) {
  41. // Check system as stable
  42. systemCheck(true);
  43. checked = true;
  44. }
  45. }
  46. #endif
  47. // -----------------------------------------------------------------------------
  48. void systemSendHeartbeat() {
  49. _system_send_heartbeat = true;
  50. }
  51. unsigned long systemLoopDelay() {
  52. return _loop_delay;
  53. }
  54. void systemLoop() {
  55. // -------------------------------------------------------------------------
  56. // Check system stability
  57. // -------------------------------------------------------------------------
  58. #if SYSTEM_CHECK_ENABLED
  59. systemCheckLoop();
  60. #endif
  61. // -------------------------------------------------------------------------
  62. // Heartbeat
  63. // -------------------------------------------------------------------------
  64. #if HEARTBEAT_ENABLED
  65. // Heartbeat
  66. static unsigned long last_hbeat = 0;
  67. if (_system_send_heartbeat || (last_hbeat == 0) || (millis() - last_hbeat > HEARTBEAT_INTERVAL)) {
  68. _system_send_heartbeat = false;
  69. last_hbeat = millis();
  70. heartbeat();
  71. }
  72. #endif // HEARTBEAT_ENABLED
  73. // -------------------------------------------------------------------------
  74. // Load Average calculation
  75. // -------------------------------------------------------------------------
  76. static unsigned long last_loadcheck = 0;
  77. static unsigned long load_counter_temp = 0;
  78. static unsigned long load_counter = 0;
  79. static unsigned long load_counter_max = 1;
  80. load_counter_temp++;
  81. if (millis() - last_loadcheck > LOADAVG_INTERVAL) {
  82. load_counter = load_counter_temp;
  83. load_counter_temp = 0;
  84. if (load_counter > load_counter_max) {
  85. load_counter_max = load_counter;
  86. }
  87. _load_average = 100 - (100 * load_counter / load_counter_max);
  88. last_loadcheck = millis();
  89. }
  90. // -------------------------------------------------------------------------
  91. // Power saving delay
  92. // -------------------------------------------------------------------------
  93. delay(_loop_delay);
  94. }
  95. void systemSetup() {
  96. EEPROM.begin(EEPROM_SIZE);
  97. #if DEBUG_SERIAL_SUPPORT
  98. DEBUG_PORT.begin(SERIAL_BAUDRATE);
  99. #if DEBUG_ESP_WIFI
  100. DEBUG_PORT.setDebugOutput(true);
  101. #endif
  102. #elif defined(SERIAL_BAUDRATE)
  103. Serial.begin(SERIAL_BAUDRATE);
  104. #endif
  105. #if SPIFFS_SUPPORT
  106. SPIFFS.begin();
  107. #endif
  108. // Question system stability
  109. #if SYSTEM_CHECK_ENABLED
  110. systemCheck(false);
  111. #endif
  112. #if defined(ESPLIVE)
  113. //The ESPLive has an ADC MUX which needs to be configured.
  114. pinMode(16, OUTPUT);
  115. digitalWrite(16, HIGH); //Defualt CT input (pin B, solder jumper B)
  116. #endif
  117. // Cache loop delay value to speed things (recommended max 250ms)
  118. _loop_delay = atol(getSetting("loopDelay", LOOP_DELAY_TIME).c_str());
  119. _loop_delay = constrain(_loop_delay, 0, 300);
  120. // Register Loop
  121. espurnaRegisterLoop(systemLoop);
  122. }
  123. unsigned long getLoadAverage() {
  124. return _load_average;
  125. }