xiaoxiang781216 commented on code in PR #7160: URL: https://github.com/apache/incubator-nuttx/pull/7160#discussion_r977935396
########## arch/arm/src/tlsr82/tlsr82_start.c: ########## @@ -84,13 +84,13 @@ void __tc32_start(void) tlsr82_clock_init(); #ifdef CONFIG_SCHED_BACKTRACE - extern uint32_t _sramcode; - extern uint32_t _eramcode; + extern uint8_t _sramcode[]; + extern uint8_t _eramcode[]; static void *g_code_regions[] = { - &_stext , &_etext, - &_sramcode, &_eramcode, - NULL , NULL, + _stext , _etext, + _sramcode, _eramcode, + NULL , NULL, }; extern void up_backtrace_init_code_regions(void **regions); Review Comment: Done. -- 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