mirror of
https://github.com/esphome/esphome.git
synced 2025-04-03 17:30:28 +01:00
add reset reason
This commit is contained in:
parent
b999eee4ec
commit
a18c1a2c06
@ -8,6 +8,9 @@ from esphome.const import (
|
|||||||
CONF_ID,
|
CONF_ID,
|
||||||
CONF_LOOP_TIME,
|
CONF_LOOP_TIME,
|
||||||
)
|
)
|
||||||
|
from esphome.components.zephyr import (
|
||||||
|
zephyr_add_prj_conf,
|
||||||
|
)
|
||||||
|
|
||||||
CODEOWNERS = ["@OttoWinter"]
|
CODEOWNERS = ["@OttoWinter"]
|
||||||
DEPENDENCIES = ["logger"]
|
DEPENDENCIES = ["logger"]
|
||||||
@ -42,5 +45,6 @@ CONFIG_SCHEMA = cv.All(
|
|||||||
|
|
||||||
|
|
||||||
async def to_code(config):
|
async def to_code(config):
|
||||||
|
zephyr_add_prj_conf("HWINFO", True)
|
||||||
var = cg.new_Pvariable(config[CONF_ID])
|
var = cg.new_Pvariable(config[CONF_ID])
|
||||||
await cg.register_component(var, config)
|
await cg.register_component(var, config)
|
||||||
|
59
esphome/components/debug/debug_zephyr.cpp
Normal file
59
esphome/components/debug/debug_zephyr.cpp
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
#include "debug_component.h"
|
||||||
|
#ifdef USE_ZEPHYR
|
||||||
|
#include <climits>
|
||||||
|
#include "esphome/core/log.h"
|
||||||
|
#include <zephyr/drivers/hwinfo.h>
|
||||||
|
|
||||||
|
namespace esphome {
|
||||||
|
namespace debug {
|
||||||
|
|
||||||
|
static const char *const TAG = "debug";
|
||||||
|
|
||||||
|
static void set_reset_reason(std::string &reset_reason, bool set, const char *reason) {
|
||||||
|
if (!set) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (reset_reason.size()) {
|
||||||
|
reset_reason += ", ";
|
||||||
|
}
|
||||||
|
reset_reason += reason;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::string DebugComponent::get_reset_reason_() {
|
||||||
|
uint32_t cause;
|
||||||
|
auto ret = hwinfo_get_reset_cause(&cause);
|
||||||
|
if (ret) {
|
||||||
|
ESP_LOGE(TAG, "Unable to get reset cause: %d", ret);
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
std::string reset_reason;
|
||||||
|
|
||||||
|
set_reset_reason(reset_reason, cause & RESET_PIN, "External pin");
|
||||||
|
set_reset_reason(reset_reason, cause & RESET_SOFTWARE, "Software reset");
|
||||||
|
set_reset_reason(reset_reason, cause & RESET_BROWNOUT, "Brownout (drop in voltage)");
|
||||||
|
set_reset_reason(reset_reason, cause & RESET_POR, "Power-on reset (POR)");
|
||||||
|
set_reset_reason(reset_reason, cause & RESET_WATCHDOG, "Watchdog timer expiration");
|
||||||
|
set_reset_reason(reset_reason, cause & RESET_DEBUG, "Debug event");
|
||||||
|
set_reset_reason(reset_reason, cause & RESET_SECURITY, "Security violation");
|
||||||
|
set_reset_reason(reset_reason, cause & RESET_LOW_POWER_WAKE, "Waking up from low power mode");
|
||||||
|
set_reset_reason(reset_reason, cause & RESET_CPU_LOCKUP, "CPU lock-up detected");
|
||||||
|
set_reset_reason(reset_reason, cause & RESET_PARITY, "Parity error");
|
||||||
|
set_reset_reason(reset_reason, cause & RESET_PLL, "PLL error");
|
||||||
|
set_reset_reason(reset_reason, cause & RESET_CLOCK, "Clock error");
|
||||||
|
set_reset_reason(reset_reason, cause & RESET_HARDWARE, "Hardware reset");
|
||||||
|
set_reset_reason(reset_reason, cause & RESET_USER, "User reset");
|
||||||
|
set_reset_reason(reset_reason, cause & RESET_TEMPERATURE, "Temperature reset");
|
||||||
|
|
||||||
|
ESP_LOGD(TAG, "Reset Reason: %s", reset_reason.c_str());
|
||||||
|
return reset_reason;
|
||||||
|
}
|
||||||
|
|
||||||
|
uint32_t DebugComponent::get_free_heap_() { return INT_MAX; }
|
||||||
|
|
||||||
|
void DebugComponent::get_device_info_(std::string &device_info) {}
|
||||||
|
|
||||||
|
void DebugComponent::update_platform_() {}
|
||||||
|
|
||||||
|
} // namespace debug
|
||||||
|
} // namespace esphome
|
||||||
|
#endif
|
1
tests/components/debug/test.nrf52-adafruit.yaml
Normal file
1
tests/components/debug/test.nrf52-adafruit.yaml
Normal file
@ -0,0 +1 @@
|
|||||||
|
<<: !include common.yaml
|
1
tests/components/debug/test.nrf52.yaml
Normal file
1
tests/components/debug/test.nrf52.yaml
Normal file
@ -0,0 +1 @@
|
|||||||
|
<<: !include common.yaml
|
@ -76,3 +76,12 @@ zephyr_ble_nus:
|
|||||||
log: true
|
log: true
|
||||||
|
|
||||||
zephyr_debug:
|
zephyr_debug:
|
||||||
|
|
||||||
|
debug:
|
||||||
|
|
||||||
|
text_sensor:
|
||||||
|
- platform: debug
|
||||||
|
device:
|
||||||
|
name: "Device Info"
|
||||||
|
reset_reason:
|
||||||
|
name: "Reset Reason"
|
||||||
|
@ -42,3 +42,12 @@ zephyr_ble_nus:
|
|||||||
log: true
|
log: true
|
||||||
|
|
||||||
zephyr_debug:
|
zephyr_debug:
|
||||||
|
|
||||||
|
debug:
|
||||||
|
|
||||||
|
text_sensor:
|
||||||
|
- platform: debug
|
||||||
|
device:
|
||||||
|
name: "Device Info"
|
||||||
|
reset_reason:
|
||||||
|
name: "Reset Reason"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user