1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-25 20:02:37 +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 2472970933
commit 22f063b913

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;