mirror of
https://gitee.com/muyuchl/nrf51_2in13_epd.git
synced 2025-12-19 04:03:20 +08:00
16 lines
231 B
C
16 lines
231 B
C
#ifndef _COMMON_H_
|
|
#define _COMMON_H_
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h> // NULL
|
|
|
|
#define CODE
|
|
|
|
typedef unsigned int uint;
|
|
|
|
typedef uint8_t uint8;
|
|
typedef uint16_t uint16;
|
|
typedef uint32_t uint32;
|
|
|
|
#endif // !_COMMON_H_
|