Skip to content
Snippets Groups Projects
Commit 2730cc05 authored by Cristian Maglie's avatar Cristian Maglie Committed by Cristian Maglie
Browse files

samd: Arduino "boolean" type is now mapped on "bool"

parent 41f8bf45
No related branches found
No related tags found
No related merge requests found
......@@ -96,9 +96,8 @@ typedef unsigned int word;
#define bit(b) (1UL << (b))
// TODO: to be checked
typedef uint8_t boolean ;
typedef uint8_t byte ;
typedef bool boolean;
typedef uint8_t byte;
#ifdef __cplusplus
} // extern "C"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment