From 11a53887bc6baa4df68b53aa6dec02e3a6060e38 Mon Sep 17 00:00:00 2001 From: tfateba Date: Sat, 10 Jun 2017 00:36:12 +0000 Subject: Resolve the linker error message: undefined reference to chThdExit. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10255 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/common/ports/AVR/chcore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/os/common/ports/AVR/chcore.c b/os/common/ports/AVR/chcore.c index 8ecb47b00..ca70ccc5f 100644 --- a/os/common/ports/AVR/chcore.c +++ b/os/common/ports/AVR/chcore.c @@ -150,7 +150,7 @@ void _port_thread_start(void) { asm volatile ("movw r24, r4"); asm volatile ("movw r30, r2"); asm volatile ("icall"); - asm volatile ("call chThdExit"); + asm volatile ("call chSysHalt"); } /** @} */ -- cgit v1.2.3