diff options
Diffstat (limited to 'os/nil/include/nil.h')
-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
/** @} */
|