Arduino custom type boolean is now mapped to bool type

Fixes #2151
Fixes #2147
This commit is contained in:
Cristian Maglie 2015-01-07 14:56:19 +01:00
parent 3ba0d76024
commit 17db7a7843
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ typedef unsigned int word;
#define bit(b) (1UL << (b))
typedef uint8_t boolean;
typedef bool boolean;
typedef uint8_t byte;
void init(void);