2024-04-25 02:45 AM
STM32CubeMX 6.11.1 was released on st.com as well as an in-tool update patch.
Main issues fixed in this patch:
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.
2024-04-28 11:10 AM
Thanks for the informative announcement!
2024-05-27 03:14 PM
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?