From 9a42d3e7aaa6ec85c3280c34c9bcc579dd0d1746 Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Sat, 2 Sep 2023 07:56:35 -0700 Subject: [PATCH] debug error check (#731) --- src/internal/methods/NeoEsp32RmtMethod.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal/methods/NeoEsp32RmtMethod.h b/src/internal/methods/NeoEsp32RmtMethod.h index edaab53..f6e0c23 100644 --- a/src/internal/methods/NeoEsp32RmtMethod.h +++ b/src/internal/methods/NeoEsp32RmtMethod.h @@ -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()