Fixed bug 3485667.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_2.4.x@3945 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
6bac7a9c58
commit
85d45e9c3b
|
@ -83,11 +83,20 @@ IVOR10:
|
||||||
lis %r3, 0x0800 /* DIS bit mask. */
|
lis %r3, 0x0800 /* DIS bit mask. */
|
||||||
mtspr 336, %r3 /* TSR register. */
|
mtspr 336, %r3 /* TSR register. */
|
||||||
|
|
||||||
|
#if CH_DBG_SYSTEM_STATE_CHECK
|
||||||
|
bl dbg_check_enter_isr
|
||||||
|
bl dbg_check_lock_from_isr
|
||||||
|
#endif
|
||||||
|
bl chSysTimerHandlerI
|
||||||
|
#if CH_DBG_SYSTEM_STATE_CHECK
|
||||||
|
bl dbg_check_unlock_from_isr
|
||||||
|
bl dbg_check_leave_isr
|
||||||
|
#endif
|
||||||
|
|
||||||
/* System tick handler invocation.*/
|
/* System tick handler invocation.*/
|
||||||
#if CH_DBG_SYSTEM_STATE_CHECK
|
#if CH_DBG_SYSTEM_STATE_CHECK
|
||||||
bl dbg_check_lock
|
bl dbg_check_lock
|
||||||
#endif
|
#endif
|
||||||
bl chSysTimerHandlerI
|
|
||||||
bl chSchIsPreemptionRequired
|
bl chSchIsPreemptionRequired
|
||||||
cmpli cr0, %r3, 0
|
cmpli cr0, %r3, 0
|
||||||
beq cr0, .ctxrestore
|
beq cr0, .ctxrestore
|
||||||
|
|
|
@ -79,6 +79,8 @@
|
||||||
*****************************************************************************
|
*****************************************************************************
|
||||||
|
|
||||||
*** 2.4.1 ***
|
*** 2.4.1 ***
|
||||||
|
- FIX: Fixed PPC port broken when CH_DBG_SYSTEM_STATE_CHECK is activated
|
||||||
|
(bug 3485667).
|
||||||
- FIX: Fixed missing PLL3 check in STM32F107 HAL (bug 3485278).
|
- FIX: Fixed missing PLL3 check in STM32F107 HAL (bug 3485278).
|
||||||
- FIX: Fixed ADC maximum frequency limit in STM32F2/F4 ADC drivers (bug
|
- FIX: Fixed ADC maximum frequency limit in STM32F2/F4 ADC drivers (bug
|
||||||
3484947).
|
3484947).
|
||||||
|
|
Loading…
Reference in New Issue