From f80b27ab12ff575cf7b9849e65a0fde841cbca65 Mon Sep 17 00:00:00 2001 From: rusefi Date: Fri, 28 Aug 2020 08:58:51 -0400 Subject: [PATCH] reducing confusion? --- firmware/console/binary/tunerstudio_io.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firmware/console/binary/tunerstudio_io.cpp b/firmware/console/binary/tunerstudio_io.cpp index 7bb4d2bd26..28aae85b90 100644 --- a/firmware/console/binary/tunerstudio_io.cpp +++ b/firmware/console/binary/tunerstudio_io.cpp @@ -166,10 +166,10 @@ int sr5ReadDataTimeout(ts_channel_s *tsChannel, uint8_t * buffer, int size, int extern uart_dma_s tsUartDma; return (int)iqReadTimeout(&tsUartDma.fifoRxQueue, (uint8_t * )buffer, (size_t)size, timeout); } + firmwareError(CUSTOM_ERR_6126, "Unexpected DMA situation no uartp"); #endif -#if TS_UART_DMA_MODE -#elif TS_UART_MODE +#if TS_UART_MODE UNUSED(tsChannel); size_t received = (size_t)size; uartReceiveTimeout(TS_UART_DEVICE, &received, buffer, timeout);