From c600b0ba1a837ad1e434b71fecd964252d8ce58f Mon Sep 17 00:00:00 2001 From: Andrzej Kaczmarek Date: Wed, 13 Nov 2024 09:33:22 +0100 Subject: [PATCH] hw/cmsis-core: Update CMSIS repo to 5.9.0 --- hw/cmsis-core/pkg.yml | 2 +- libc/baselibc/src/start.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/hw/cmsis-core/pkg.yml b/hw/cmsis-core/pkg.yml index cab7480787..9934211a13 100644 --- a/hw/cmsis-core/pkg.yml +++ b/hw/cmsis-core/pkg.yml @@ -32,7 +32,7 @@ pkg.include_dirs: repository.arm-CMSIS_5: type: github - vers: 5.4.0-commit + vers: 5.9.0-commit branch: master user: ARM-software repo: CMSIS_5 diff --git a/libc/baselibc/src/start.c b/libc/baselibc/src/start.c index fc63f74b0b..7f822bba28 100644 --- a/libc/baselibc/src/start.c +++ b/libc/baselibc/src/start.c @@ -45,6 +45,7 @@ void _start(void) #else os_init(mynewt_main); os_start(); + while (1); #endif }