1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-16 11:21:18 +03:00

add _bv macro from avr

see #125
This commit is contained in:
Markus Sattler
2015-04-26 22:16:10 +02:00
committed by Ivan Grokhotkov
parent 34e49f8b72
commit f84f65c109

View File

@ -108,6 +108,7 @@ void ets_intr_unlock();
typedef unsigned int word;
#define bit(b) (1UL << (b))
#define _BV(b) (1UL << (b))
typedef uint8_t boolean;
typedef uint8_t byte;