Fixed bug #443.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@6523 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
f407c0326f
commit
dc4b409c0b
|
@ -48,4 +48,5 @@
|
|||
</scannerConfigBuildInfo>
|
||||
</storageModule>
|
||||
<storageModule moduleId="org.eclipse.cdt.core.LanguageSettingsProviders"/>
|
||||
<storageModule moduleId="refreshScope"/>
|
||||
</cproject>
|
||||
|
|
|
@ -165,11 +165,11 @@
|
|||
|
||||
/**
|
||||
* @brief PendSV priority level.
|
||||
* @note This priority is enforced to be equal to @p CORTEX_BASEPRI_KERNEL,
|
||||
* this handler always have the highest priority that cannot preempt
|
||||
* the kernel.
|
||||
* @note This priority is enforced to be equal to
|
||||
* @p CORTEX_MAX_KERNEL_PRIORITY, this handler always have the
|
||||
* highest priority that cannot preempt the kernel.
|
||||
*/
|
||||
#define CORTEX_PRIORITY_PENDSV CORTEX_BASEPRI_KERNEL
|
||||
#define CORTEX_PRIORITY_PENDSV CORTEX_MAX_KERNEL_PRIORITY
|
||||
|
||||
/*===========================================================================*/
|
||||
/* Port exported info. */
|
||||
|
|
|
@ -91,6 +91,8 @@
|
|||
*** 2.7.0 ***
|
||||
- FIX: Fixed wrong definition in STM32F37x ADC driver (bug #444)(backported
|
||||
to 2.6.2).
|
||||
- FIX: Fixed wrong CORTEX_PRIORITY_PENDSV value (bug #443)(backported to
|
||||
2.4.6 and 2.6.2).
|
||||
- FIX: Fixed lost incoming characters in STM32 USARTv1 driver (bug #442)
|
||||
(backported to 2.4.6 and 2.6.2).
|
||||
- FIX: Fixed UART4/5-related bugs in STM32 USARTv1 UART driver (bug #440)
|
||||
|
|
Loading…
Reference in New Issue