mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-19 20:53:26 +02:00
67ca60e2af
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
19 lines
396 B
C++
19 lines
396 B
C++
#include "debug_component.h"
|
|
#ifdef USE_HOST
|
|
#include <climits>
|
|
|
|
namespace esphome {
|
|
namespace debug {
|
|
|
|
std::string DebugComponent::get_reset_reason_() { return ""; }
|
|
|
|
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
|