diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-02-22 13:12:50 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2016-02-22 13:12:50 +0000 |
commit | 03eb35736c5a3ea65f571fc0c4c1811ccbd49780 (patch) | |
tree | e1bb8b1adf7c6ba465aa3b17719278f5ee2aa01a /os/rt/include | |
parent | c40bc2c09dd3fe9c3033a075ce01aab11a5cf559 (diff) | |
download | ChibiOS-03eb35736c5a3ea65f571fc0c4c1811ccbd49780.tar.gz ChibiOS-03eb35736c5a3ea65f571fc0c4c1811ccbd49780.tar.bz2 ChibiOS-03eb35736c5a3ea65f571fc0c4c1811ccbd49780.zip |
Renamed r13 context field in sp (ARM ports). Extended the priorities range from 127 to 255.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8921 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/rt/include')
-rw-r--r-- | os/rt/include/chschd.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/os/rt/include/chschd.h b/os/rt/include/chschd.h index a3db7a3db..8275a1eee 100644 --- a/os/rt/include/chschd.h +++ b/os/rt/include/chschd.h @@ -51,9 +51,8 @@ priority. */
#define IDLEPRIO (tprio_t)1 /**< @brief Idle priority. */
#define LOWPRIO (tprio_t)2 /**< @brief Lowest priority. */
-#define NORMALPRIO (tprio_t)64 /**< @brief Normal priority. */
-#define HIGHPRIO (tprio_t)127 /**< @brief Highest priority. */
-#define ABSPRIO (tprio_t)255 /**< @brief Greatest priority. */
+#define NORMALPRIO (tprio_t)128 /**< @brief Normal priority. */
+#define HIGHPRIO (tprio_t)255 /**< @brief Highest priority. */
/** @} */
/**
|