mirror of
https://github.com/esphome/esphome.git
synced 2025-02-21 20:38:16 +00:00
## Description: Move esphome-core codebase into esphome (and a bunch of other refactors). See https://github.com/esphome/feature-requests/issues/97 Yes this is a shit ton of work and no there's no way to automate it :( But it will be worth it 👍 Progress: - Core support (file copy etc): 80% - Base Abstractions (light, switch): ~50% - Integrations: ~10% - Working? Yes, (but only with ported components). Other refactors: - Moves all codegen related stuff into a single class: `esphome.codegen` (imported as `cg`) - Rework coroutine syntax - Move from `component/platform.py` to `domain/component.py` structure as with HA - Move all defaults out of C++ and into config validation. - Remove `make_...` helpers from Application class. Reason: Merge conflicts with every single new integration. - Pointer Variables are stored globally instead of locally in setup(). Reason: stack size limit. Future work: - Rework const.py - Move all `CONF_...` into a conf class (usage `conf.UPDATE_INTERVAL` vs `CONF_UPDATE_INTERVAL`). Reason: Less convoluted import block - Enable loading from `custom_components` folder. **Related issue (if applicable):** https://github.com/esphome/feature-requests/issues/97 **Pull request in [esphome-docs](https://github.com/esphome/esphome-docs) with documentation (if applicable):** esphome/esphome-docs#<esphome-docs PR number goes here> ## Checklist: - [ ] The code change is tested and works locally. - [ ] Tests have been added to verify that the new code works (under `tests/` folder). If user exposed functionality or configuration variables are added/changed: - [ ] Documentation added/updated in [esphomedocs](https://github.com/OttoWinter/esphomedocs).
211 lines
5.7 KiB
C++
211 lines
5.7 KiB
C++
#include "debug_component.h"
|
|
#include "esphome/core/log.h"
|
|
#include "esphome/core/helpers.h"
|
|
#include "esphome/core/defines.h"
|
|
|
|
#ifdef ARDUINO_ARCH_ESP32
|
|
#include <rom/rtc.h>
|
|
#endif
|
|
|
|
namespace esphome {
|
|
namespace debug {
|
|
|
|
static const char *TAG = "debug";
|
|
|
|
void DebugComponent::dump_config() {
|
|
#ifndef ESPHOME_LOG_HAS_DEBUG
|
|
ESP_LOGE(TAG, "Debug Component requires debug log level!");
|
|
this->status_set_error();
|
|
return;
|
|
#endif
|
|
|
|
ESP_LOGD(TAG, "ESPHome Core version %s", ESPHOME_VERSION);
|
|
this->free_heap_ = ESP.getFreeHeap();
|
|
ESP_LOGD(TAG, "Free Heap Size: %u bytes", this->free_heap_);
|
|
|
|
const char *flash_mode;
|
|
switch (ESP.getFlashChipMode()) {
|
|
case FM_QIO:
|
|
flash_mode = "QIO";
|
|
break;
|
|
case FM_QOUT:
|
|
flash_mode = "QOUT";
|
|
break;
|
|
case FM_DIO:
|
|
flash_mode = "DIO";
|
|
break;
|
|
case FM_DOUT:
|
|
flash_mode = "DOUT";
|
|
break;
|
|
#ifdef ARDUINO_ARCH_ESP32
|
|
case FM_FAST_READ:
|
|
flash_mode = "FAST_READ";
|
|
break;
|
|
case FM_SLOW_READ:
|
|
flash_mode = "SLOW_READ";
|
|
break;
|
|
#endif
|
|
default:
|
|
flash_mode = "UNKNOWN";
|
|
}
|
|
ESP_LOGD(TAG, "Flash Chip: Size=%ukB Speed=%uMHz Mode=%s", ESP.getFlashChipSize() / 1024,
|
|
ESP.getFlashChipSpeed() / 1000000, flash_mode);
|
|
|
|
#ifdef ARDUINO_ARCH_ESP32
|
|
esp_chip_info_t info;
|
|
esp_chip_info(&info);
|
|
const char *model;
|
|
switch (info.model) {
|
|
case CHIP_ESP32:
|
|
model = "ESP32";
|
|
break;
|
|
default:
|
|
model = "UNKNOWN";
|
|
}
|
|
std::string features;
|
|
if (info.features & CHIP_FEATURE_EMB_FLASH) {
|
|
features += "EMB_FLASH,";
|
|
info.features &= ~CHIP_FEATURE_EMB_FLASH;
|
|
}
|
|
if (info.features & CHIP_FEATURE_WIFI_BGN) {
|
|
features += "WIFI_BGN,";
|
|
info.features &= ~CHIP_FEATURE_WIFI_BGN;
|
|
}
|
|
if (info.features & CHIP_FEATURE_BLE) {
|
|
features += "BLE,";
|
|
info.features &= ~CHIP_FEATURE_BLE;
|
|
}
|
|
if (info.features & CHIP_FEATURE_BT) {
|
|
features += "BT,";
|
|
info.features &= ~CHIP_FEATURE_BT;
|
|
}
|
|
if (info.features)
|
|
features += "Other:" + uint64_to_string(info.features);
|
|
ESP_LOGD(TAG, "Chip: Model=%s, Features=%s Cores=%u, Revision=%u", model, features.c_str(), info.cores,
|
|
info.revision);
|
|
|
|
ESP_LOGD(TAG, "ESP-IDF Version: %s", esp_get_idf_version());
|
|
|
|
std::string mac = uint64_to_string(ESP.getEfuseMac());
|
|
ESP_LOGD(TAG, "EFuse MAC: %s", mac.c_str());
|
|
|
|
const char *reset_reason;
|
|
switch (rtc_get_reset_reason(0)) {
|
|
case POWERON_RESET:
|
|
reset_reason = "Power On Reset";
|
|
break;
|
|
case SW_RESET:
|
|
reset_reason = "Software Reset Digital Core";
|
|
break;
|
|
case OWDT_RESET:
|
|
reset_reason = "Watch Dog Reset Digital Core";
|
|
break;
|
|
case DEEPSLEEP_RESET:
|
|
reset_reason = "Deep Sleep Reset Digital Core";
|
|
break;
|
|
case SDIO_RESET:
|
|
reset_reason = "SLC Module Reset Digital Core";
|
|
break;
|
|
case TG0WDT_SYS_RESET:
|
|
reset_reason = "Timer Group 0 Watch Dog Reset Digital Core";
|
|
break;
|
|
case TG1WDT_SYS_RESET:
|
|
reset_reason = "Timer Group 1 Watch Dog Reset Digital Core";
|
|
break;
|
|
case RTCWDT_SYS_RESET:
|
|
reset_reason = "RTC Watch Dog Reset Digital Core";
|
|
break;
|
|
case INTRUSION_RESET:
|
|
reset_reason = "Intrusion Reset CPU";
|
|
break;
|
|
case TGWDT_CPU_RESET:
|
|
reset_reason = "Timer Group Reset CPU";
|
|
break;
|
|
case SW_CPU_RESET:
|
|
reset_reason = "Software Reset CPU";
|
|
break;
|
|
case RTCWDT_CPU_RESET:
|
|
reset_reason = "RTC Watch Dog Reset CPU";
|
|
break;
|
|
case EXT_CPU_RESET:
|
|
reset_reason = "External CPU Reset";
|
|
break;
|
|
case RTCWDT_BROWN_OUT_RESET:
|
|
reset_reason = "Voltage Unstable Reset";
|
|
break;
|
|
case RTCWDT_RTC_RESET:
|
|
reset_reason = "RTC Watch Dog Reset Digital Core And RTC Module";
|
|
break;
|
|
default:
|
|
reset_reason = "Unknown Reset Reason";
|
|
}
|
|
ESP_LOGD(TAG, "Reset Reason: %s", reset_reason);
|
|
|
|
const char *wakeup_reason;
|
|
switch (rtc_get_wakeup_cause()) {
|
|
case NO_SLEEP:
|
|
wakeup_reason = "No Sleep";
|
|
break;
|
|
case EXT_EVENT0_TRIG:
|
|
wakeup_reason = "External Event 0";
|
|
break;
|
|
case EXT_EVENT1_TRIG:
|
|
wakeup_reason = "External Event 1";
|
|
break;
|
|
case GPIO_TRIG:
|
|
wakeup_reason = "GPIO";
|
|
break;
|
|
case TIMER_EXPIRE:
|
|
wakeup_reason = "Wakeup Timer";
|
|
break;
|
|
case SDIO_TRIG:
|
|
wakeup_reason = "SDIO";
|
|
break;
|
|
case MAC_TRIG:
|
|
wakeup_reason = "MAC";
|
|
break;
|
|
case UART0_TRIG:
|
|
wakeup_reason = "UART0";
|
|
break;
|
|
case UART1_TRIG:
|
|
wakeup_reason = "UART1";
|
|
break;
|
|
case TOUCH_TRIG:
|
|
wakeup_reason = "Touch";
|
|
break;
|
|
case SAR_TRIG:
|
|
wakeup_reason = "SAR";
|
|
break;
|
|
case BT_TRIG:
|
|
wakeup_reason = "BT";
|
|
break;
|
|
default:
|
|
wakeup_reason = "Unknown";
|
|
}
|
|
ESP_LOGD(TAG, "Wakeup Reason: %s", wakeup_reason);
|
|
#endif
|
|
|
|
#ifdef ARDUINO_ARCH_ESP8266
|
|
ESP_LOGD(TAG, "Chip ID: 0x%08X", ESP.getChipId());
|
|
ESP_LOGD(TAG, "SDK Version: %s", ESP.getSdkVersion());
|
|
ESP_LOGD(TAG, "Core Version: %s", ESP.getCoreVersion().c_str());
|
|
ESP_LOGD(TAG, "Boot Version=%u Mode=%u", ESP.getBootVersion(), ESP.getBootMode());
|
|
ESP_LOGD(TAG, "CPU Frequency: %u", ESP.getCpuFreqMHz());
|
|
ESP_LOGD(TAG, "Flash Chip ID=0x%08X", ESP.getFlashChipId());
|
|
ESP_LOGD(TAG, "Reset Reason: %s", ESP.getResetReason().c_str());
|
|
ESP_LOGD(TAG, "Reset Info: %s", ESP.getResetInfo().c_str());
|
|
#endif
|
|
}
|
|
void DebugComponent::loop() {
|
|
uint32_t new_free_heap = ESP.getFreeHeap();
|
|
if (new_free_heap < this->free_heap_ / 2) {
|
|
this->free_heap_ = new_free_heap;
|
|
ESP_LOGD(TAG, "Free Heap Size: %u bytes", this->free_heap_);
|
|
this->status_momentary_warning("heap", 1000);
|
|
}
|
|
}
|
|
float DebugComponent::get_setup_priority() const { return setup_priority::LATE; }
|
|
|
|
} // namespace debug
|
|
} // namespace esphome
|