User Activity

Hi, I am using all HAL drivers in my project, and have this configured in STM32CubeIDE(in STM32CubeMX part of STM32CubeIDE). I want to use mixed HAL and LL drivers for DMA and UART. But, because in STM32CubeIDE device configuation(advanced options) I...
How can I get STM32CubeIDE to show proposed function documentatioin when I press Ctrl+Space? For example, if I type "HAL_UART" and press Ctrl+Space, it shows many proposed functions. How to I get it to show the documentation from these functions. Tha...
Posted on July 14, 2015 at 06:16When creating USB CDC code for devices with a USB FS port, 448 bytes are wasted. The USBD_CDC_HandleTypeDef structure in usbd_cdc.h uses CDC_DATA_HS_MAX_PACKET_SIZE to create data buffer. This is defined as 512 bytes(...
Posted on July 14, 2015 at 06:05The USBD_static_malloc() function in ''usbd_conf.c'' is broken! Can someone at ST please fix this! Causes USB CDC to NOT work. This function currently looks like this: void *USBD_static_malloc(uint32_t size) {   //sta...
Posted on July 11, 2015 at 05:06Hi, been using STM32CubeMX for creating code for ''System Workbench for STM32''. The linker file created by STM32CubeMX has 0 for heap and stack: _Min_Heap_Size = 0;      /* required amount of heap  */ _Min_Stack_Size...