diff --git a/components/dataLink/DataLinkManager.cpp b/components/dataLink/DataLinkManager.cpp index 9038106..b132094 100644 --- a/components/dataLink/DataLinkManager.cpp +++ b/components/dataLink/DataLinkManager.cpp @@ -274,7 +274,7 @@ esp_err_t DataLinkManager::receive(uint8_t* data, size_t data_len, size_t* recv_ esp_err_t res = phys_comms->receive(data, data_len, recv_len, curr_channel); if (res != ESP_OK){ - ESP_LOGE(DEBUG_LINK_TAG, "RMT Failed to receive"); + ESP_LOGW(DEBUG_LINK_TAG, "RMT Failed to receive"); return ESP_ERR_TIMEOUT; } diff --git a/components/rmt/RMTManager.cpp b/components/rmt/RMTManager.cpp index 912ef35..b944c14 100644 --- a/components/rmt/RMTManager.cpp +++ b/components/rmt/RMTManager.cpp @@ -572,7 +572,7 @@ esp_err_t RMTManager::receive(uint8_t* recv_buf, size_t size, size_t* output_siz rmt_rx_done_event_data_t rx_data; if (xQueueReceive(channels[channel_num].rx_queue, &rx_data, pdMS_TO_TICKS(15000)) != pdTRUE){ //this will wait until a message has arrived or not // printf("Timeout occurred while waiting for RX event\n"); - ESP_LOGE(DEBUG_TAG, "Timeout occurred while waiting for RX event - didn't receive a message in time"); + ESP_LOGW(DEBUG_TAG, "Timeout occurred while waiting for RX event - didn't receive a message in time"); return ESP_FAIL; }