From 2f19ba6ce76f0f72c23da8dd11c2abe6581b1ab0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=E2=80=86b=E2=80=86b666?= <64397326+Rbb666@users.noreply.github.com> Date: Tue, 19 Aug 2025 21:15:47 +0800 Subject: [PATCH] [libcpu ][cm3]The parameter passed to the unified rt_exception_hook is exception_stack. (#10619) --- libcpu/arm/cortex-m3/cpuport.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libcpu/arm/cortex-m3/cpuport.c b/libcpu/arm/cortex-m3/cpuport.c index 8f5616a3dd..3409b6264a 100644 --- a/libcpu/arm/cortex-m3/cpuport.c +++ b/libcpu/arm/cortex-m3/cpuport.c @@ -294,13 +294,14 @@ void rt_hw_hard_fault_exception(struct exception_info * exception_info) #if defined(RT_USING_FINSH) && defined(MSH_USING_BUILT_IN_COMMANDS) extern long list_thread(void); #endif - struct stack_frame* context = &exception_info->stack_frame; + struct exception_stack_frame *exception_stack = &exception_info->stack_frame.exception_stack_frame; + struct stack_frame *context = &exception_info->stack_frame; if (rt_exception_hook != RT_NULL) { rt_err_t result; - result = rt_exception_hook(exception_info); + result = rt_exception_hook(exception_stack); if (result == RT_EOK) return; }