Skip to content

Commit

Permalink
hw/cmsis-core: Update CMSIS repo to 5.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andrzej-kaczmarek committed Nov 13, 2024
1 parent d431da8 commit b389d0f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion hw/cmsis-core/pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
6 changes: 6 additions & 0 deletions libc/baselibc/src/start.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,12 @@ void _start(void)
os_init(mynewt_main);
os_start();
#endif

#if !MYNEWT_VAL(SELFTEST)
/* _start is noreturn so make sure it never returns except for unittests */
while (1) {
}
#endif
}

__attribute__((weak)) void
Expand Down

0 comments on commit b389d0f

Please sign in to comment.