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
No known key found for this signature in database

View File

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