Sens'it SDK  v2.0.0
sensit_types.h
Go to the documentation of this file.
1 /*!******************************************************************
2  * \file sensit_types.h
3  * \brief Sens'it SDK type definitions
4  * \author Sens'it Team
5  * \copyright Copyright (c) 2018 Sigfox, All Rights Reserved.
6  *******************************************************************/
7 
8 
9 #define NULL (void*)0
11 typedef unsigned char u8;
12 typedef unsigned short u16;
13 typedef unsigned long u32;
15 typedef signed char s8;
16 typedef signed short s16;
17 typedef signed long s32;
19 typedef unsigned char bool;
20 #define TRUE (bool)(1)
21 #define FALSE (bool)(0)
23 typedef unsigned char error_t;