Improved port info.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@14161 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
parent
76224772e2
commit
65d78352b9
|
@ -262,9 +262,14 @@
|
||||||
/**
|
/**
|
||||||
* @brief Port-specific information string.
|
* @brief Port-specific information string.
|
||||||
*/
|
*/
|
||||||
#if (CORTEX_ALTERNATE_SWITCH == FALSE) || defined(__DOXYGEN__)
|
#if (CH_CFG_SMP_MODE != FALSE) || defined(__DOXYGEN__)
|
||||||
#define PORT_INFO "Preemption through NMI"
|
#if (CORTEX_ALTERNATE_SWITCH == FALSE) || defined(__DOXYGEN__)
|
||||||
|
#define PORT_INFO "Preemption through NMI (SMP)"
|
||||||
|
#else
|
||||||
|
#define PORT_INFO "Preemption through PendSV (SMP)"
|
||||||
|
#endif
|
||||||
#else
|
#else
|
||||||
|
#define PORT_INFO "Preemption through NMI"
|
||||||
#define PORT_INFO "Preemption through PendSV"
|
#define PORT_INFO "Preemption through PendSV"
|
||||||
#endif
|
#endif
|
||||||
/** @} */
|
/** @} */
|
||||||
|
|
Loading…
Reference in New Issue