mirror of
https://github.com/esphome/esphome.git
synced 2025-10-30 14:43:51 +00:00
Fix glue code missing micros() (#2623)
This commit is contained in:
@@ -214,6 +214,7 @@ def include_file(path, basename):
|
|||||||
ARDUINO_GLUE_CODE = """\
|
ARDUINO_GLUE_CODE = """\
|
||||||
#define yield() esphome::yield()
|
#define yield() esphome::yield()
|
||||||
#define millis() esphome::millis()
|
#define millis() esphome::millis()
|
||||||
|
#define micros() esphome::micros()
|
||||||
#define delay(x) esphome::delay(x)
|
#define delay(x) esphome::delay(x)
|
||||||
#define delayMicroseconds(x) esphome::delayMicroseconds(x)
|
#define delayMicroseconds(x) esphome::delayMicroseconds(x)
|
||||||
"""
|
"""
|
||||||
|
|||||||
Reference in New Issue
Block a user