User Activity

Hi, I want to receive 20 bytes.I want to receive them every 2 milliseconds and simultaneously.To show data, I am working with TOUCHGFX. I use dynamic graphs to show them.The problem is, I want to show 12 bits on each graph.I debugged my code , it sea...
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?
Receiving data by UART and display it by TOUCHGFX cause some lost data in my screen, graph is not displayed correctly.There are 2 boards one which is been receiving the signals by sensors and the second one is LCD board which has been configured by T...
Hi, I want to receive data by UART and display them by graph.Here is my code:``` HAL_UART_Receive_IT(&huart1,(uint8_t*)RxBuf,1); RxBuf[1]=r1[i];```and show by graph:```  if(i<256){ dynamicGraph1.addDataPoint(r1[i++] ); }else i=0;```the problem is...
Hi, I want to receive data by UART.In MX, I have initialized it:this is the code: huart1.Instance = USART1; huart1.Init.BaudRate = 115200; huart1.Init.WordLength = UART_WORDLENGTH_8B; huart1.Init.StopBits = UART_STOPBITS_1; huart1.Init.Parity = UART_...