mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-22 08:22:04 +03:00
Fix too wide 'word' type -- it should be 16-bit instead of 32-bit (#3851)
This commit is contained in:
@ -178,7 +178,7 @@ void ets_intr_unlock();
|
||||
#define _NOP() do { __asm__ volatile ("nop"); } while (0)
|
||||
#endif
|
||||
|
||||
typedef unsigned int word;
|
||||
typedef uint16_t word;
|
||||
|
||||
#define bit(b) (1UL << (b))
|
||||
#define _BV(b) (1UL << (b))
|
||||
|
Reference in New Issue
Block a user