cancel
Showing results for 
Search instead for 
Did you mean: 

STM32CubeMX 6.11.1 released

Semer CHERNI
ST Employee

STM32CubeMX 6.11.1 was released on st.com as well as an in-tool update patch.

Main issues fixed in this patch:

  • Ticket 176645 : STM32CubeMX V6.11.0 has lost the "JTAG (5 pins)" debug mode for all the STM32H7 series but the STM32H7Rx/7Sx microcontrollers.
  • Ticket 176638 : STM32CubeMX V6.11.0 has lost 3 modes for all the STM32H7 series but the STM32H7Rx/7Sx microcontrollers on ADC3
  • Ticket 176658 : STM32CubeMX V6.11.0 is not generating the call to "HAL_PWREx_EnableVddA()" function for STM32U5 series.
  • Ticket 177071 :  Compilation error related to MX_FLASH_Init() function for STM32H5 series.
  • Ticket 176763 : An issue affects ADC oversampling when writing OVSR bits for all the STM32H7 series but the STM32H7Rx/7Sx microcontrollers.
  • Ticket 177285 : An error occurs when switching the timebase source from SysTick to a timer for the STM32C0 series.

Check the errata under this link for more details.

Where do I obtain STM32CubeMX 6.11.1 ?

To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.

2 REPLIES 2

Thanks for the informative announcement!

LLeva.1
Associate III

Still we have unnecessary inclusion of:

Src/sysmem.c \
Src/syscalls.c

in the "makefile".

 

And waiting next 10 years to fix the Middlewares/ST/STM32_USB_Device_Library/Class/CDC/usbd_cdc.h

FROM:

#define CDC_CMD_PACKET_SIZE 8U /* Control Endpoint Packet size */

TO:

#ifndef CDC_CMD_PACKET_SIZE
#define CDC_CMD_PACKET_SIZE 8U /* Control Endpoint Packet size */
#endif

Or just change it to:
#define CDC_CMD_PACKET_SIZE 10U /* Control Endpoint Packet size */

Just for FUN or comply with the requirements of USB specifications?