Fixed bug #494.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@6908 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
3b7d4e76af
commit
4afa0b98df
|
@ -66,13 +66,13 @@
|
||||||
* @brief Per-thread stack overhead for interrupts servicing.
|
* @brief Per-thread stack overhead for interrupts servicing.
|
||||||
* @details This constant is used in the calculation of the correct working
|
* @details This constant is used in the calculation of the correct working
|
||||||
* area size.
|
* area size.
|
||||||
* @note In this port this value is conservatively set to 32 because the
|
* @note In this port this value is conservatively set to 64 because the
|
||||||
* function @p chSchDoReschedule() can have a stack frame, especially
|
* function @p chSchDoReschedule() can have a stack frame, especially
|
||||||
* with compiler optimizations disabled. The value can be reduced
|
* with compiler optimizations disabled. The value can be reduced
|
||||||
* when compiler optimizations are enabled.
|
* when compiler optimizations are enabled.
|
||||||
*/
|
*/
|
||||||
#if !defined(PORT_INT_REQUIRED_STACK)
|
#if !defined(PORT_INT_REQUIRED_STACK)
|
||||||
#define PORT_INT_REQUIRED_STACK 32
|
#define PORT_INT_REQUIRED_STACK 64
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -63,13 +63,13 @@
|
||||||
* @brief Per-thread stack overhead for interrupts servicing.
|
* @brief Per-thread stack overhead for interrupts servicing.
|
||||||
* @details This constant is used in the calculation of the correct working
|
* @details This constant is used in the calculation of the correct working
|
||||||
* area size.
|
* area size.
|
||||||
* @note In this port this value is conservatively set to 32 because the
|
* @note In this port this value is conservatively set to 64 because the
|
||||||
* function @p chSchDoReschedule() can have a stack frame, especially
|
* function @p chSchDoReschedule() can have a stack frame, especially
|
||||||
* with compiler optimizations disabled. The value can be reduced
|
* with compiler optimizations disabled. The value can be reduced
|
||||||
* when compiler optimizations are enabled.
|
* when compiler optimizations are enabled.
|
||||||
*/
|
*/
|
||||||
#if !defined(PORT_INT_REQUIRED_STACK)
|
#if !defined(PORT_INT_REQUIRED_STACK)
|
||||||
#define PORT_INT_REQUIRED_STACK 32
|
#define PORT_INT_REQUIRED_STACK 64
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -89,6 +89,8 @@
|
||||||
*****************************************************************************
|
*****************************************************************************
|
||||||
|
|
||||||
*** 2.7.0 ***
|
*** 2.7.0 ***
|
||||||
|
- FIX: Fixed insufficient ISR-reserved stack in ARMCMx port when
|
||||||
|
optimizations are disabled (bug #494)(backported to 2.6.4).
|
||||||
- FIX: Fixed configuration descriptors larger than 127 bytes don't
|
- FIX: Fixed configuration descriptors larger than 127 bytes don't
|
||||||
work (bug #373)(backported to 2.6.4).
|
work (bug #373)(backported to 2.6.4).
|
||||||
- FIX: Fixed invalid cast in PWM_FRACTION_TO_WIDTH() macro (bug #487)
|
- FIX: Fixed invalid cast in PWM_FRACTION_TO_WIDTH() macro (bug #487)
|
||||||
|
|
Loading…
Reference in New Issue