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/nil | |
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/nil')
-rw-r--r-- | os/nil/include/nil.h | 30 |
1 files changed, 26 insertions, 4 deletions
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
/** @} */
|