debug error check (#731)

This commit is contained in:
Michael Miller
2023-09-02 07:56:35 -07:00
committed by GitHub
parent 7d2a5d2580
commit 9a42d3e7aa

View File

@ -566,7 +566,7 @@ public:
bool IsReadyToUpdate() const
{
return (ESP_OK == rmt_wait_tx_done(_channel.RmtChannelNumber, 0));
return (ESP_OK == ESP_ERROR_CHECK_WITHOUT_ABORT(rmt_wait_tx_done(_channel.RmtChannelNumber, 0)));
}
void Initialize()