bootstate.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /*
  2. *
  3. * Sebastien L. 2023, sle118@hotmail.com
  4. * Philippe G. 2023, philippe_44@outlook.com
  5. *
  6. * This software is released under the MIT License.
  7. * https://opensource.org/licenses/MIT
  8. *
  9. * License Overview:
  10. * ----------------
  11. * The MIT License is a permissive open source license. As a user of this software, you are free to:
  12. * - Use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of this software.
  13. * - Use the software for private, commercial, or any other purposes.
  14. *
  15. * Conditions:
  16. * - You must include the above copyright notice and this permission notice in all
  17. * copies or substantial portions of the Software.
  18. *
  19. * The MIT License offers a high degree of freedom and is well-suited for both open source and
  20. * commercial applications. It places minimal restrictions on how the software can be used,
  21. * modified, and redistributed. For more details on the MIT License, please refer to the link above.
  22. */
  23. #pragma once
  24. #include "esp_partition.h"
  25. #include "esp_system.h"
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29. uint32_t bootstate_read_counter(void);
  30. /**
  31. * @fn uint32_t bootstate_uptate_counter(int32_t xValue)
  32. * Updates the boot state counter.
  33. *
  34. * Increments the RebootCounter by 'xValue'. If 'xValue' is 0, or if RebootCounter
  35. * exceeds 100, it resets both RebootCounter and RecoveryRebootCounter to 0.
  36. * Additionally, updates the RecoveryRebootCounter based on the recovery state.
  37. *
  38. * @param xValue The value to increment the RebootCounter.
  39. * @return The updated value of the RebootCounter.
  40. */
  41. uint32_t bootstate_uptate_counter(int32_t xValue);
  42. /**
  43. * @fn void bootstate_handle_boot(void)
  44. * Handles the boot state logic on system startup.
  45. *
  46. * This function manages boot states based on cold boot indicators, recovery states, and reboot counters.
  47. * It includes logic for handling regular and recovery boots, and manages the boot counter's logic
  48. * for different scenarios such as factory resets or configuration erasures.
  49. */
  50. void bootstate_handle_boot(void);
  51. /**
  52. * @fn esp_err_t guided_boot(esp_partition_subtype_t partition_subtype)
  53. * Performs a guided boot to a specified partition subtype.
  54. *
  55. * This function attempts to reboot the device to a specified partition subtype.
  56. * It includes logic to handle different scenarios based on the current running state
  57. * (normal or recovery) and the target partition subtype.
  58. *
  59. * @param partition_subtype The target partition subtype to boot to.
  60. * @return ESP_OK on successful execution, or an ESP_ERR code on failure.
  61. */
  62. esp_err_t guided_boot(esp_partition_subtype_t partition_subtype);
  63. /**
  64. * @fn esp_err_t guided_restart_ota(void)
  65. * Initiates a guided restart to an OTA (Over The Air) update partition.
  66. *
  67. * This function logs the intention to boot to the Squeezelite OTA partition and then
  68. * calls guided_boot to execute the reboot. It always returns ESP_FAIL as the system
  69. * is expected to reboot and not return from the function.
  70. *
  71. * @return ESP_FAIL to indicate the function should not return as a reboot is expected.
  72. */
  73. esp_err_t guided_restart_ota(void);
  74. /**
  75. * @fn esp_err_t guided_factory(void)
  76. * Initiates a guided restart to the factory partition.
  77. *
  78. * This function logs the intention to boot to the recovery partition and then
  79. * calls guided_boot to execute the reboot. It always returns ESP_FAIL as the system
  80. * is expected to reboot and not return from the function.
  81. *
  82. * @return ESP_FAIL to indicate the function should not return as a reboot is expected.
  83. */
  84. esp_err_t guided_factory(void);
  85. /**
  86. * @fn void simple_restart(void)
  87. * Performs a simple system restart.
  88. *
  89. * This function logs a reboot message, attempts to commit any pending configurations,
  90. * waits for a short duration, and then triggers a system restart using `esp_restart`.
  91. */
  92. void simple_restart(void);
  93. /**
  94. * @fn bool is_restarting(void)
  95. * Checks if the system is in the process of restarting.
  96. *
  97. * @return `true` if the system is currently restarting, `false` otherwise.
  98. */
  99. bool is_restarting(void);
  100. /**
  101. * @var extern bool is_recovery_running
  102. * Indicates whether the system is currently running in recovery mode.
  103. *
  104. * This variable is used to determine the current operating mode of the system.
  105. * It should be set to `true` when the system is operating in recovery mode, and
  106. * `false` otherwise. As an external variable, it is likely defined and managed
  107. * in another file/module.
  108. */
  109. extern bool is_recovery_running;
  110. #ifdef __cplusplus
  111. }
  112. #endif