diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-04-06 09:29:12 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-04-06 09:29:12 +0000 |
commit | 1f34d712d6bad7d0513ca4bbe8cbcae8236040ea (patch) | |
tree | 4e50fe52de8bad4b3125a1f81abf65837e00de44 /os | |
parent | 9ec03852f22d65f77e4d6a93a81f726d43552c5c (diff) | |
download | ChibiOS-1f34d712d6bad7d0513ca4bbe8cbcae8236040ea.tar.gz ChibiOS-1f34d712d6bad7d0513ca4bbe8cbcae8236040ea.tar.bz2 ChibiOS-1f34d712d6bad7d0513ca4bbe8cbcae8236040ea.zip |
Updated version numbers.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7859 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rw-r--r-- | os/hal/include/hal.h | 30 | ||||
-rw-r--r-- | os/nil/include/nil.h | 30 | ||||
-rw-r--r-- | os/rt/include/ch.h | 11 |
3 files changed, 60 insertions, 11 deletions
diff --git a/os/hal/include/hal.h b/os/hal/include/hal.h index 8062b7fdc..25772e304 100644 --- a/os/hal/include/hal.h +++ b/os/hal/include/hal.h @@ -85,15 +85,37 @@ /*===========================================================================*/
/**
- * @name HAL identification
- * @{
+ * @brief ChibiOS/HAL identification macro.
*/
-#define _HAL_
+#define _CHIBIOS_HAL_
-#define HAL_VERSION "3.0.0dev"
+/**
+ * @brief Stable release flag.
+ */
+#define CH_HAL_STABLE 0
+
+/**
+ * @name ChibiOS/HAL version identification
+ * @{
+ */
+/**
+ * @brief HAL version string.
+ */
+#define HAL_VERSION "3.0.0p1"
+/**
+ * @brief HAL version major number.
+ */
#define CH_HAL_MAJOR 3
+
+/**
+ * @brief HAL version minor number.
+ */
#define CH_HAL_MINOR 0
+
+/**
+ * @brief HAL version patch number.
+ */
#define CH_HAL_PATCH 0
/** @} */
diff --git a/os/nil/include/nil.h b/os/nil/include/nil.h index e17aeef99..ca84be502 100644 --- a/os/nil/include/nil.h +++ b/os/nil/include/nil.h @@ -45,15 +45,37 @@ typedef struct nil_thread thread_t; /*===========================================================================*/
/**
- * @name Nil RTOS identification
- * @{
+ * @brief ChibiOS/NIL identification macro.
*/
-#define _NIL_
+#define _CHIBIOS_NIL_
-#define CH_KERNEL_VERSION "1.0.0dev"
+/**
+ * @brief Stable release flag.
+ */
+#define CH_KERNEL_STABLE 0
+
+/**
+ * @name ChibiOS/NIL version identification
+ * @{
+ */
+/**
+ * @brief Kernel version string.
+ */
+#define CH_KERNEL_VERSION "1.0.0p1"
+/**
+ * @brief Kernel version major number.
+ */
#define CH_KERNEL_MAJOR 1
+
+/**
+ * @brief Kernel version minor number.
+ */
#define CH_KERNEL_MINOR 0
+
+/**
+ * @brief Kernel version patch number.
+ */
#define CH_KERNEL_PATCH 0
/** @} */
diff --git a/os/rt/include/ch.h b/os/rt/include/ch.h index f6e5481d0..8f5d0a1c4 100644 --- a/os/rt/include/ch.h +++ b/os/rt/include/ch.h @@ -37,15 +37,20 @@ #define _CHIBIOS_RT_
/**
- * @brief Kernel version string.
+ * @brief Stable release flag.
*/
-#define CH_KERNEL_VERSION "3.0.0dev"
+#define CH_KERNEL_STABLE 0
/**
- * @name Kernel version
+ * @name ChibiOS/RT version identification
* @{
*/
/**
+ * @brief Kernel version string.
+ */
+#define CH_KERNEL_VERSION "3.0.0p1"
+
+/**
* @brief Kernel version major number.
*/
#define CH_KERNEL_MAJOR 3
|