mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-22 08:22:04 +03:00
Fixing overflow bug in bit() macro: (1 << (b)) becomes (1UL << (b))
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user