From 57bb3292e1bfbc12c2f115981da9c460183f4f20 Mon Sep 17 00:00:00 2001 From: david gauchard Date: Tue, 30 Jul 2019 23:08:04 +0200 Subject: [PATCH] enable puya support by default (can be disabled with -DPUYA_SUPPORT=0) --- cores/esp8266/Arduino.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cores/esp8266/Arduino.h b/cores/esp8266/Arduino.h index d962923de8..7711e8fa58 100644 --- a/cores/esp8266/Arduino.h +++ b/cores/esp8266/Arduino.h @@ -303,6 +303,10 @@ extern "C" void configTime(long timezone, int daylightOffset_sec, #include "pins_arduino.h" +#ifndef PUYA_SUPPORT +#define PUYA_SUPPORT 1 +#endif + #endif #ifdef DEBUG_ESP_OOM