Fixed bug #1228.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@15529 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
parent
1db669522c
commit
4edce31f68
|
@ -110,7 +110,7 @@ __port_thread_start PROC
|
||||||
blx r4
|
blx r4
|
||||||
movs r0, #0 /* MSG_OK */
|
movs r0, #0 /* MSG_OK */
|
||||||
bl chThdExit
|
bl chThdExit
|
||||||
.zombies b .zombies
|
zombies b zombies
|
||||||
ENDP
|
ENDP
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -133,7 +133,7 @@ __port_switch_from_isr PROC
|
||||||
#if CH_DBG_STATISTICS
|
#if CH_DBG_STATISTICS
|
||||||
bl __stats_stop_measure_crit_thd
|
bl __stats_stop_measure_crit_thd
|
||||||
#endif
|
#endif
|
||||||
_port_exit_from_isr
|
__port_exit_from_isr
|
||||||
ldr r2, =SCB_ICSR
|
ldr r2, =SCB_ICSR
|
||||||
movs r3, #128
|
movs r3, #128
|
||||||
#if CORTEX_ALTERNATE_SWITCH
|
#if CORTEX_ALTERNATE_SWITCH
|
||||||
|
@ -144,7 +144,7 @@ _port_exit_from_isr
|
||||||
lsls r3, r3, #24
|
lsls r3, r3, #24
|
||||||
str r3, [r2, #0]
|
str r3, [r2, #0]
|
||||||
#endif
|
#endif
|
||||||
.waithere b .waithere
|
waithere b waithere
|
||||||
ENDP
|
ENDP
|
||||||
|
|
||||||
END
|
END
|
||||||
|
|
|
@ -123,6 +123,8 @@
|
||||||
- NEW: Added SPIv2 support also to STM32WB and STM32WL.
|
- NEW: Added SPIv2 support also to STM32WB and STM32WL.
|
||||||
- FIX: Re-opened and fixed bug #1100
|
- FIX: Re-opened and fixed bug #1100
|
||||||
(backported to 20.3.5)(backported to 21.11.2).
|
(backported to 20.3.5)(backported to 21.11.2).
|
||||||
|
- FIX: Fixed ARMv6-M port Keil compiler fail (bug #1228)
|
||||||
|
(backported to 21.11.2).
|
||||||
- FIX: Fixed invalid handling of lwIP NETIF_FLAG_LINK_UP flag (bug #1227)
|
- FIX: Fixed invalid handling of lwIP NETIF_FLAG_LINK_UP flag (bug #1227)
|
||||||
(backported to 20.3.5)(backported to 21.11.2).
|
(backported to 20.3.5)(backported to 21.11.2).
|
||||||
- FIX: Fixed missing TIM16/17 errata handling for STM32G0xx (bug #1226)
|
- FIX: Fixed missing TIM16/17 errata handling for STM32G0xx (bug #1226)
|
||||||
|
|
Loading…
Reference in New Issue