1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-01-30 19:52:13 +01:00

Fixing overflow bug in bit() macro: (1 << (b)) becomes (1UL << (b))

This commit is contained in:
David A. Mellis 2009-05-19 18:16:08 +00:00
parent b11e25ecf2
commit 7357e38cf6

View File

@ -92,7 +92,7 @@ extern "C"{
typedef unsigned int word;
#define bit(b) (1 << (b))
#define bit(b) (1UL << (b))
typedef uint8_t boolean;
typedef uint8_t byte;