Corrected typedef for u32
Updated version for sensor_api_common_types.h to 2.0.1
This commit is contained in:
parent
c78092f7c1
commit
17d53ff3e4
@ -27,7 +27,7 @@ VERSION
|
||||
* bme680_calculations.c - 2.0.0
|
||||
* bme680_calculations.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
|
||||
|
||||
INTEGRATION DETAILS
|
||||
|
@ -7,7 +7,7 @@
|
||||
*
|
||||
* Date : 2016/06/10
|
||||
*
|
||||
* Revision: 2.0.0
|
||||
* Revision: 2.0.1
|
||||
*
|
||||
* Usage: sensor API common data types Header File
|
||||
*
|
||||
@ -184,7 +184,7 @@
|
||||
/*unsigned integer types*/
|
||||
typedef unsigned char u8;/**< used for unsigned 8bit */
|
||||
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
|
||||
define the MACHINE_32_BIT*/
|
||||
@ -198,7 +198,7 @@
|
||||
/*unsigned integer types*/
|
||||
typedef unsigned char u8;/**< used for unsigned 8bit */
|
||||
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 */
|
||||
|
||||
/* If your machine support 64 bit
|
||||
@ -258,7 +258,7 @@
|
||||
/*unsigned integer types*/
|
||||
typedef unsigned char u8;/**< used for unsigned 8bit */
|
||||
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
|
||||
define the MACHINE_32_BIT*/
|
||||
#elif defined MACHINE_32_BIT
|
||||
@ -271,7 +271,7 @@
|
||||
/*unsigned integer types*/
|
||||
typedef unsigned char u8;/**< used for unsigned 8bit */
|
||||
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*/
|
||||
typedef unsigned long long int u64;/**< used for unsigned 64bit */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user