Gary-Hobson opened a new pull request, #8601: URL: https://github.com/apache/nuttx/pull/8601
## Summary When using stm32, the starting address of the function parsed by mkallsyms.py is an odd number, one large than the actual address ## Impact ## Testing stm32h743zi: ``` arm-none-eabi-objdump: arm-none-eabi-objdump -t nuttx/nuttx | grep hello 00000000 l df *ABS* 00000000 hello_main.c 080131f8 g F .text 00000010 hello_main old mkallsyms.py: { "hello_main", (FAR void *)0x80131f9 }, new mkallsyms.py: { "hello_main", (FAR void *)0x80131f8 }, ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org