Files
examples/cc25xx-8051-example/ti/BLE-CC254x/Components/hal/target/CC2541ARC/stdint.h

20 lines
331 B
C
Raw Normal View History

2017-05-09 11:36:49 +08:00
// If the compiler have not this file
#ifndef __STDINT_H
#define __STDINT_H
// 8 bits
typedef signed char int8_t;
typedef unsigned char uint8_t;
// 16bits
typedef signed short int16_t;
typedef unsigned short uint16_t;
// 32 bits
typedef signed long int32_t;
typedef unsigned long uint32_t;
#endif // __STDINT_H