1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-15 09:42:19 +01:00

keep mcp2515 since it has error flags

This commit is contained in:
J. Nick Koston
2025-07-24 22:08:59 -10:00
parent 9cd657e8f5
commit 65f7426ceb

View File

@@ -23,6 +23,7 @@ bool MCP2515::setup_internal() {
if (this->set_mode_(this->mcp_mode_) != canbus::ERROR_OK)
return false;
uint8_t err_flags = this->get_error_flags_();
ESP_LOGD(TAG, "mcp2515 setup done, error_flags = %02X", err_flags);
return true;
}