Separate version numbers for HAL.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7765 35acf78f-673a-0410-8e92-d51de3d6d3f4master
parent
db0b7ae062
commit
ef809b45c0
|
@ -87,12 +87,25 @@
|
|||
/* 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
|
||||
* @{
|
||||
*/
|
||||
#define HAL_SUCCESS false
|
||||
#define HAL_FAILED true
|
||||
#define HAL_SUCCESS false
|
||||
#define HAL_FAILED true
|
||||
/** @} */
|
||||
|
||||
/*===========================================================================*/
|
||||
|
|
|
@ -50,11 +50,11 @@ typedef struct nil_thread thread_t;
|
|||
*/
|
||||
#define _NIL_
|
||||
|
||||
#define CH_KERNEL_VERSION "1.0.0dev"
|
||||
#define CH_KERNEL_VERSION "1.0.0dev"
|
||||
|
||||
#define CH_KERNEL_MAJOR 1
|
||||
#define CH_KERNEL_MINOR 0
|
||||
#define CH_KERNEL_PATCH 0
|
||||
#define CH_KERNEL_MAJOR 1
|
||||
#define CH_KERNEL_MINOR 0
|
||||
#define CH_KERNEL_PATCH 0
|
||||
/** @} */
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue