added CC2541 8051 example

This commit is contained in:
strawmanbobi
2019-07-25 18:12:39 +08:00
parent 6239044717
commit 0bb1ce5ac1
1105 changed files with 150777 additions and 3696 deletions

View File

@@ -0,0 +1,19 @@
// 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