Corrected typedef for u32

Updated version for sensor_api_common_types.h to 2.0.1
This commit is contained in:
Bosch Sensortec 2017-03-23 11:59:54 +01:00
parent c78092f7c1
commit 17d53ff3e4
2 changed files with 6 additions and 6 deletions

View File

@ -27,7 +27,7 @@ VERSION
* bme680_calculations.c - 2.0.0 * bme680_calculations.c - 2.0.0
* bme680_calculations.h - 2.0.0 * bme680_calculations.h - 2.0.0
* bme680_internal.h - 2.0.0 * bme680_internal.h - 2.0.0
* sensor_api_common_types.h - 2.0.0 * sensor_api_common_types.h - 2.0.1
* BME680_SensorAPI_Example_Guide.pdf - 2.0.0 * BME680_SensorAPI_Example_Guide.pdf - 2.0.0
INTEGRATION DETAILS INTEGRATION DETAILS

View File

@ -7,7 +7,7 @@
* *
* Date : 2016/06/10 * Date : 2016/06/10
* *
* Revision: 2.0.0 * Revision: 2.0.1
* *
* Usage: sensor API common data types Header File * Usage: sensor API common data types Header File
* *
@ -184,7 +184,7 @@
/*unsigned integer types*/ /*unsigned integer types*/
typedef unsigned char u8;/**< used for unsigned 8bit */ typedef unsigned char u8;/**< used for unsigned 8bit */
typedef unsigned short int u16;/**< used for unsigned 16bit */ typedef unsigned short int u16;/**< used for unsigned 16bit */
typedef unsigned long int u32;/**< used for unsigned 32bit */ typedef unsigned int u32;/**< used for unsigned 32bit */
/* If your machine support 32 bit /* If your machine support 32 bit
define the MACHINE_32_BIT*/ define the MACHINE_32_BIT*/
@ -198,7 +198,7 @@
/*unsigned integer types*/ /*unsigned integer types*/
typedef unsigned char u8;/**< used for unsigned 8bit */ typedef unsigned char u8;/**< used for unsigned 8bit */
typedef unsigned short int u16;/**< used for unsigned 16bit */ typedef unsigned short int u16;/**< used for unsigned 16bit */
typedef unsigned long int u32;/**< used for unsigned 32bit */ typedef unsigned int u32;/**< used for unsigned 32bit */
typedef unsigned long long int u64;/**< used for unsigned 64bit */ typedef unsigned long long int u64;/**< used for unsigned 64bit */
/* If your machine support 64 bit /* If your machine support 64 bit
@ -258,7 +258,7 @@
/*unsigned integer types*/ /*unsigned integer types*/
typedef unsigned char u8;/**< used for unsigned 8bit */ typedef unsigned char u8;/**< used for unsigned 8bit */
typedef unsigned short int u16;/**< used for unsigned 16bit */ typedef unsigned short int u16;/**< used for unsigned 16bit */
typedef unsigned long int u32;/**< used for unsigned 32bit */ typedef unsigned int u32;/**< used for unsigned 32bit */
/*! @brief If your machine support 32 bit /*! @brief If your machine support 32 bit
define the MACHINE_32_BIT*/ define the MACHINE_32_BIT*/
#elif defined MACHINE_32_BIT #elif defined MACHINE_32_BIT
@ -271,7 +271,7 @@
/*unsigned integer types*/ /*unsigned integer types*/
typedef unsigned char u8;/**< used for unsigned 8bit */ typedef unsigned char u8;/**< used for unsigned 8bit */
typedef unsigned short int u16;/**< used for unsigned 16bit */ typedef unsigned short int u16;/**< used for unsigned 16bit */
typedef unsigned long int u32;/**< used for unsigned 32bit typedef unsigned int u32;/**< used for unsigned 32bit
- int and long int is same for u32*/ - int and long int is same for u32*/
typedef unsigned long long int u64;/**< used for unsigned 64bit */ typedef unsigned long long int u64;/**< used for unsigned 64bit */