Skip to main content
Semer CHERNI
ST Employee
April 25, 2024
Question

STM32CubeMX 6.11.1 released

  • April 25, 2024
  • 2 replies
  • 2599 views

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 ?

2 replies

David Littell
Senior II
April 28, 2024

Thanks for the informative announcement!

LLeva.1
Associate II
May 27, 2024

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?