diff options
-rw-r--r-- | readme.txt | 3 | ||||
-rw-r--r-- | src/templates/chcore.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/readme.txt b/readme.txt index f346d20c6..c4c30f823 100644 --- a/readme.txt +++ b/readme.txt @@ -72,6 +72,9 @@ Win32-MinGW - ChibiOS/RT simulator and demo into a WIN32 process, *** Releases ***
*****************************************************************************
+*** 1.1.1unstable ***
+- FIX: fixed a small problem in the chcore.c template file.
+
*** 1.1.0unstable ***
- FIX: Modified the default value for the STM32 HSI setup it was 1, it should
be 0x10 (backported in stable branch).
diff --git a/src/templates/chcore.c b/src/templates/chcore.c index 95aeac1c5..7f64ee35b 100644 --- a/src/templates/chcore.c +++ b/src/templates/chcore.c @@ -112,7 +112,7 @@ void port_wait_for_interrupt(void) { */
void port_halt(void) {
- port_disable_all();
+ port_disable();
while (TRUE) {
}
}
|