User Activity

There is a array:uint8_t dat[8] = {0xcd, 0xcc, 0xcc, 0xcc, 0xcc, 0xdc, 0x5e, 0x40};It means a double variable data in memery. The value is 123.45. This code can be run in my computer: int main(int argc, char *argv[]){  uint8_t dat[] = {0xcd, 0xcc, 0x...
I want to report an error. I use lastest version cubemx v5.3.0. And lastest lib "STM32Cube MCU Package for STM32F1 Series 1.8.0".I use Makefile to build. Not keil.Every time (except first time) I generate code. There is an error in Makefile:I have wa...
I use stm32cubemx. And in stm32fxxx_hal_uart.c. There is a function "HAL_UART_DMAStop". This function will stop both TXDMA and RXDMA.But I have a request. I often use "HAL_UART_DMAStop"+"HAL_UART_Receive_DMA" to flush dma buffer. But HAL_UART_DMAStop...