[IAR]How to solve the problem: Warning[25]: Label 'Reset_Handler' is defined pubweak in a section implicitly declared root
- Find : startup_stm32f4xx.s
- Change SECTION .text:CODE:REORDER(1) to : SECTION .text:CODE:REORDER:NOROOT(1)
- Save
Comment:
NOROOT means that if the symbol is not associated, it is optimized.
Use ROOT if you don’t want to be optimized.