User Activity

I am using "HAL_UART_Transmit" and "HAL_UART_Receive" in the HAL uart driver to perform uart communication. While adding the CRC check to the communication protocol, I am wondering if there's any HAL uart driver API that incorporates CRC check functi...
I am using the usart6 port (PC6 and PC7) on a STM32F769I DISCOVERY board to communicate with another STM32F769I DISCOVERY board. I use cubemx generated code "MX_USART6_UART_Init" to initiate the usart6 and use "HAL_UART_Transmit" on sender and "HAL_U...
I am setting up I2C communication between a master board (STM32H753I-EVAL2) and a slave board (NUCLEO-H753ZI). At the master board side, I use "HAL_I2C_Master_Seq_Transmit_IT(&hi2c1, 96<<1, (uint8_t*)gTxBuffer, 4, I2C_FIRST_AND_LAST_FRAME)" to start ...
I am trying to use the external i2c connector (CN4) on the STM32H753I-Eval2 board to connect with the i2c connector (CN2) on STM32F769I discovery board. STM32H753I works as master and STM32F769I works as slave.On STM32H753I, the function "HAL_I2C_Mas...