1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-29 22:24:26 +00:00

Drop uint{32,64}_to_string() helper functions (#3009)

This commit is contained in:
Oxan van Leeuwen
2022-01-06 16:36:11 +01:00
committed by GitHub
parent 640142fc0c
commit 07e790f900
4 changed files with 5 additions and 25 deletions

View File

@@ -101,7 +101,7 @@ void DebugComponent::dump_config() {
info.features &= ~CHIP_FEATURE_BT;
}
if (info.features)
features += "Other:" + uint64_to_string(info.features);
features += "Other:" + format_hex(info.features);
ESP_LOGD(TAG, "Chip: Model=%s, Features=%s Cores=%u, Revision=%u", model, features.c_str(), info.cores,
info.revision);