2022-12-30 01:41 AM
Hi, I need to receive data by UART every 2 mS, thus I disable all configuration setting for FREERTOS in CubeMX.
I receive data at my desired time but I have a question... Is disabling FreeRTOS cause faults while TOUCHGFX running?
2023-01-01 04:56 AM
2023-01-01 05:00 AM
2023-01-01 05:18 AM
HAL_UART_Receive_IT(&huart1, uartMsgData, 20);
Start receive 20 bytes data, but on ever calback you use only first byte?
Read about How to Receive Data using UART in STM32 || Poll || Interrupt || DMA (controllerstech.com)
and how to queue it into GUI Backend Communication | TouchGFX Documentation
and example FreeRTOS Tutorial 5 || Simple QUEUE || STM32 || NO CMSIS || CubeIDE - YouTube