Bumped Mbed FW version to 01.20.0080

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers mbedVersion.h Source File

mbedVersion.h

Go to the documentation of this file.
00001 /*
00002 Copyright (c) 2019 by ADI. This model is the confidential and
00003 proprietary property of ADI and the possession or use of this
00004 file requires a written license.
00005  *
00006  *****************************************************************************/
00007 
00008 /*!
00009  ******************************************************************************
00010  * @file:
00011  * @brief:  Placeholder for revision numbers
00012  *-----------------------------------------------------------------------------
00013  */
00014 #ifndef __VERSION_H__
00015 #define __VERSION_H__
00016 
00017 /* 
00018  * Use a 32-bit versioning scheme that supports numerical compares
00019  * Version number is read as MAJOR.MINOR build, e.g.
00020  * 1.12 build 55
00021  * Note: numbering format is binary coded decimal for ease of reading in debug
00022  *       environment.
00023  */
00024 #define MBED_HOST_MAJOR 0x01
00025 #define MBED_HOST_MINOR 0x20
00026 #define MBED_HOST_BUILD 0x0080
00027 
00028 
00029 #endif