From 62081bdf805531a9088ae4708d02e42432051797 Mon Sep 17 00:00:00 2001 From: Nathael Pajani Date: Sun, 30 Jan 2022 04:20:38 +0100 Subject: [PATCH] Comments updates --- core/bootstrap.c | 3 +++ core/system.c | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/core/bootstrap.c b/core/bootstrap.c index 7b48a68..c4d6b81 100644 --- a/core/bootstrap.c +++ b/core/bootstrap.c @@ -144,6 +144,9 @@ extern void rom_helpers_init(void); /* * This is the entry point of the programm * It does the set up of the memory and then starts the main. + * FIXME : The compiler ensures that the values remain valid (not stored in the + * copied or erased sections of RAM, but this should be forced by assembly + * code from here. */ void Reset_Handler(void) { diff --git a/core/system.c b/core/system.c index 73cc6c9..2f0ff33 100644 --- a/core/system.c +++ b/core/system.c @@ -52,7 +52,7 @@ static struct lpc_desc_private lpc_private = { }; /***************************************************************************** */ -/* Required system inits */ +/* Required system inits */ /***************************************************************************** */ /* Configure the brown-out detection */ @@ -267,7 +267,7 @@ void clkout_off(void) /***************************************************************************** */ -/* Default sleep function */ +/* Default sleep functions */ /***************************************************************************** */ /* Note that if the systick core functions are used these will be overridden */ -- 2.43.0