Added bool type, typedefed to boolean. Also found error where unit8 had been typedefed to boolean and then re-typedefed to byte - which has now been fixed

This commit is contained in:
Roger Clark 2015-03-18 20:39:17 +11:00
parent e9f67b2f63
commit 425e9e0895
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ typedef struct stm32_pin_info {
* variable in Flash instead of RAM. */
#define __FLASH__ __attr_flash
typedef uint8 boolean;
typedef bool boolean;
typedef uint8 byte;
#endif