Separate version numbers for HAL.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7765 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
Giovanni Di Sirio 2015-03-13 09:53:02 +00:00
parent db0b7ae062
commit ef809b45c0
2 changed files with 19 additions and 6 deletions

View File

@ -87,12 +87,25 @@
/* Driver constants. */ /* Driver constants. */
/*===========================================================================*/ /*===========================================================================*/
/**
* @name HAL identification
* @{
*/
#define _HAL_
#define HAL_VERSION "3.0.0dev"
#define CH_HAL_MAJOR 3
#define CH_HAL_MINOR 0
#define CH_HAL_PATCH 0
/** @} */
/** /**
* @name Return codes * @name Return codes
* @{ * @{
*/ */
#define HAL_SUCCESS false #define HAL_SUCCESS false
#define HAL_FAILED true #define HAL_FAILED true
/** @} */ /** @} */
/*===========================================================================*/ /*===========================================================================*/

View File

@ -50,11 +50,11 @@ typedef struct nil_thread thread_t;
*/ */
#define _NIL_ #define _NIL_
#define CH_KERNEL_VERSION "1.0.0dev" #define CH_KERNEL_VERSION "1.0.0dev"
#define CH_KERNEL_MAJOR 1 #define CH_KERNEL_MAJOR 1
#define CH_KERNEL_MINOR 0 #define CH_KERNEL_MINOR 0
#define CH_KERNEL_PATCH 0 #define CH_KERNEL_PATCH 0
/** @} */ /** @} */
/** /**