19 lines
258 B
C
19 lines
258 B
C
|
|
#ifndef MYSTDINT_H
|
||
|
|
#define MYSTDINT_H
|
||
|
|
|
||
|
|
#include <avr/io.h>
|
||
|
|
|
||
|
|
typedef unsigned char uint8_t;
|
||
|
|
typedef signed char int8_t;
|
||
|
|
|
||
|
|
typedef uint8_t bool;
|
||
|
|
|
||
|
|
#define true (1)
|
||
|
|
#define false (0)
|
||
|
|
|
||
|
|
#define BV(bit) (1 << bit)
|
||
|
|
|
||
|
|
#define NULL ((void*)0)
|
||
|
|
|
||
|
|
#endif /* MYSTDINT_H */
|