typo in IRQHandler for CMake of STM32U0
With STM32CubeIDE 1.19.0, i generate a CMake project for STM32U073CCT6. The generated startup file has a DMA1_CHannel1_IRQHandler instead of DMA1_Channel1_IRQHandler.
With STM32CubeIDE 1.19.0, i generate a CMake project for STM32U073CCT6. The generated startup file has a DMA1_CHannel1_IRQHandler instead of DMA1_Channel1_IRQHandler.
Indeed..
Same thing as this one: STM32C092GCU6: FDCAN interrupt handler name mismatch
CubeMx doesn't generate code for .s it just copies it from the HAL repository.
So the recommendation here is to use the latest version of the tool. In his case he needs to use CubeMx (which points to the latest version of the CubeHAL, supposedly fixing some issues) instead of CubeIDE as "starting a project for STM32" is no more supported.
STM32CubeIDE 2.0.0 workflow tutorial
Now after checking by generating a code with CubeMx 6.17.0 which by default points to STM32Cube FW_U0 V1.3.0, the copied .s file gives the following:
.weak DMA1_Channel1_IRQHandler
.thumb_set DMA1_Channel1_IRQHandler,Default_Handler
So I suppose the issue was fixed.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.