VL53L0X API Specification: vl53l0x_types.h Source File

VL53L0X API

vl53l0x_types.h
Go to the documentation of this file.
1 /*******************************************************************************
2 Copyright � 2015, STMicroelectronics International N.V.
3 All rights reserved.
4 
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions are met:
7  * Redistributions of source code must retain the above copyright
8  notice, this list of conditions and the following disclaimer.
9  * Redistributions in binary form must reproduce the above copyright
10  notice, this list of conditions and the following disclaimer in the
11  documentation and/or other materials provided with the distribution.
12  * Neither the name of STMicroelectronics nor the
13  names of its contributors may be used to endorse or promote products
14  derived from this software without specific prior written permission.
15 
16 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
17 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND
19 NON-INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS ARE DISCLAIMED.
20 IN NO EVENT SHALL STMICROELECTRONICS INTERNATIONAL N.V. BE LIABLE FOR ANY
21 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 ********************************************************************************/
33 #ifndef VL53L0X_TYPES_H_
34 #define VL53L0X_TYPES_H_
35 
46 #include <stdint.h>
47 #include <stddef.h>
48 
49 #ifndef NULL
50 #error "Error NULL definition should be done. Please add required include "
51 #endif
52 
53 
54 #if ! defined(STDINT_H) && !defined(_GCC_STDINT_H) &&!defined(__STDINT_DECLS) && !defined(_GCC_WRAP_STDINT_H)
55 
56  #pragma message("Please review type definition of STDINT define for your platform and add to list above ")
57 
58  /*
59  * target platform do not provide stdint or use a different #define than above
60  * to avoid seeing the message below addapt the #define list above or implement
61  * all type and delete these pragma
62  */
63 
69 typedef unsigned long long uint64_t;
70 
71 
75 typedef unsigned int uint32_t;
76 
80 typedef int int32_t;
81 
85 typedef unsigned short uint16_t;
86 
90 typedef short int16_t;
91 
95 typedef unsigned char uint8_t;
96 
100 typedef signed char int8_t;
101 
103 #endif /* _STDINT_H */
104 
105 
110 
111 #endif /* VL53L0X_TYPES_H_ */
int int32_t
Typedef defining 32 bit int type.
Definition: vl53l0x_types.h:80
signed char int8_t
Typedef defining 8 bit char type.
unsigned short uint16_t
Typedef defining 16 bit unsigned short type.
Definition: vl53l0x_types.h:85
unsigned long long uint64_t
Definition: vl53l0x_types.h:69
unsigned int uint32_t
Typedef defining 32 bit unsigned int type.
Definition: vl53l0x_types.h:75
uint32_t FixPoint1616_t
use where fractional values are expected
unsigned char uint8_t
Typedef defining 8 bit unsigned char type.
Definition: vl53l0x_types.h:95
short int16_t
Typedef defining 16 bit short type.
Definition: vl53l0x_types.h:90