diff options
Diffstat (limited to 'os')
-rw-r--r-- | os/kernel/templates/chconf.h | 4 | ||||
-rw-r--r-- | os/ports/GCC/ARMCMx/chcore.h | 8 | ||||
-rw-r--r-- | os/ports/GCC/ARMCMx/port.dox | 4 |
3 files changed, 10 insertions, 6 deletions
diff --git a/os/kernel/templates/chconf.h b/os/kernel/templates/chconf.h index 046d28300..6522e0b3b 100644 --- a/os/kernel/templates/chconf.h +++ b/os/kernel/templates/chconf.h @@ -478,6 +478,10 @@ struct { \ }
#endif
+/*===========================================================================*/
+/* Port-specific settings (override port settings defaulted in chcore.h). */
+/*===========================================================================*/
+
#endif /* _CHCONF_H_ */
/** @} */
diff --git a/os/ports/GCC/ARMCMx/chcore.h b/os/ports/GCC/ARMCMx/chcore.h index 224d09c68..7ccc59290 100644 --- a/os/ports/GCC/ARMCMx/chcore.h +++ b/os/ports/GCC/ARMCMx/chcore.h @@ -140,10 +140,10 @@ * @brief PENDSV handler priority.
* @note The default PENDSV handler priority is set at the
* @p CORTEX_MINIMUM_PRIORITY priority level.
- * @note In the ARMv7-M port this value should be not changed from the
- * minimum priority level.
- * @note The PENDSV vector is only used in the ARMv7-M port, it is available
- * to user in the ARMv6-M port.
+ * @note The PENDSV vector is only used in the ARMv7-M legacy port, it is
+ * available to user in the ARMv6-M and ARMv7-M ports.
+ * @note In the ARMv7-M legacy port this value should be not changed from
+ * the minimum priority level.
*/
#ifndef CORTEX_PRIORITY_PENDSV
#define CORTEX_PRIORITY_PENDSV CORTEX_MINIMUM_PRIORITY
diff --git a/os/ports/GCC/ARMCMx/port.dox b/os/ports/GCC/ARMCMx/port.dox index b59624fab..39840fe44 100644 --- a/os/ports/GCC/ARMCMx/port.dox +++ b/os/ports/GCC/ARMCMx/port.dox @@ -109,8 +109,8 @@ * @defgroup ARMCMx_CONF Configuration Options
* @brief ARM Cortex-Mx Configuration Options.
* @details The ARMCMx port allows some architecture-specific configurations
- * settings that can be overridden externally. Usually there is no need to
- * change the default values.
+ * settings that can be overridden by redefining them in @p chconf.h.
+* Usually there is no need to change the default values.
* - @p INT_REQUIRED_STACK, this value represent the amount of stack space used
* by an interrupt handler between the @p extctx and @p intctx
* structures.<br>
|