User Activity

Function:HAL_StatusTypeDef HAL_UART_Transmit(UART_HandleTypeDef *huart, uint8_t *pData, uint16_t Size, uint32_t Timeout)The param pData should be `const uint8_t *pData`, because the data pointed to by that pointer are read only.If I pass a `const cha...
In STM32CubeIDE I created a C++ project. But the `main.c` is still generated with the .c extension and is compiled with the C compiler. That is why I cannot include the C++ headers to `main.c` (because the C compiler does not understand the keyword `...
Eval Board STM3210E-EVAL with MPU STM32F103ZGT6.I'm trying to get the interrupt handler triggered upon reception of the character over UART1.For that I got the code generated by STM32CubeIDE, fixed a bit the Rx line setting, and got the hardware rece...