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.

174 lines
4.7 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
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_Rotate.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 = EEPROMr.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. EEPROMr.write(EEPROM_CRASH_COUNTER, value);
  33. EEPROMr.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. unsigned long systemLoadAverage() {
  55. return _load_average;
  56. }
  57. void systemLoop() {
  58. // -------------------------------------------------------------------------
  59. // Check system stability
  60. // -------------------------------------------------------------------------
  61. #if SYSTEM_CHECK_ENABLED
  62. systemCheckLoop();
  63. #endif
  64. // -------------------------------------------------------------------------
  65. // Heartbeat
  66. // -------------------------------------------------------------------------
  67. #if HEARTBEAT_MODE == HEARTBEAT_ONCE
  68. if (_system_send_heartbeat) {
  69. _system_send_heartbeat = false;
  70. heartbeat();
  71. }
  72. #elif HEARTBEAT_MODE == HEARTBEAT_REPEAT
  73. static unsigned long last_hbeat = 0;
  74. if (_system_send_heartbeat || (last_hbeat == 0) || (millis() - last_hbeat > HEARTBEAT_INTERVAL)) {
  75. _system_send_heartbeat = false;
  76. last_hbeat = millis();
  77. heartbeat();
  78. }
  79. #endif // HEARTBEAT_MODE == HEARTBEAT_REPEAT
  80. // -------------------------------------------------------------------------
  81. // Load Average calculation
  82. // -------------------------------------------------------------------------
  83. static unsigned long last_loadcheck = 0;
  84. static unsigned long load_counter_temp = 0;
  85. load_counter_temp++;
  86. if (millis() - last_loadcheck > LOADAVG_INTERVAL) {
  87. static unsigned long load_counter = 0;
  88. static unsigned long load_counter_max = 1;
  89. load_counter = load_counter_temp;
  90. load_counter_temp = 0;
  91. if (load_counter > load_counter_max) {
  92. load_counter_max = load_counter;
  93. }
  94. _load_average = 100 - (100 * load_counter / load_counter_max);
  95. last_loadcheck = millis();
  96. }
  97. // -------------------------------------------------------------------------
  98. // Power saving delay
  99. // -------------------------------------------------------------------------
  100. delay(_loop_delay);
  101. }
  102. void _systemSetupSpecificHardware() {
  103. //The ESPLive has an ADC MUX which needs to be configured.
  104. #if defined(MANCAVEMADE_ESPLIVE)
  105. pinMode(16, OUTPUT);
  106. digitalWrite(16, HIGH); //Defualt CT input (pin B, solder jumper B)
  107. #endif
  108. // These devices use the hardware UART
  109. // to communicate to secondary microcontrollers
  110. #if defined(ITEAD_SONOFF_RFBRIDGE) || defined(ITEAD_SONOFF_DUAL) || (RELAY_PROVIDER == RELAY_PROVIDER_STM)
  111. Serial.begin(SERIAL_BAUDRATE);
  112. #endif
  113. }
  114. void systemSetup() {
  115. #if SPIFFS_SUPPORT
  116. SPIFFS.begin();
  117. #endif
  118. // Question system stability
  119. #if SYSTEM_CHECK_ENABLED
  120. systemCheck(false);
  121. #endif
  122. // Init device-specific hardware
  123. _systemSetupSpecificHardware();
  124. // Cache loop delay value to speed things (recommended max 250ms)
  125. _loop_delay = atol(getSetting("loopDelay", LOOP_DELAY_TIME).c_str());
  126. _loop_delay = constrain(_loop_delay, 0, 300);
  127. // Register Loop
  128. espurnaRegisterLoop(systemLoop);
  129. }