diff options
Diffstat (limited to 'os/hal/include/hal.h')
-rw-r--r-- | os/hal/include/hal.h | 30 |
1 files changed, 26 insertions, 4 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
/** @} */
|