Files
ESPEasy/pre_custom_esp32.py
T
Gijs Noorlander e75702eec8 [PIO] Update to core 2.6.2
And use new platform_packages syntax for the `regular_platform`
2019-12-01 23:52:32 +01:00

41 lines
926 B
Python

Import("env")
import os
# access to global construction environment
#print env
# Dump construction environment (for debug purpose)
#print env.Dump()
# append extra flags to global build environment
# which later will be used to build:
# - project source code
# - frameworks
# - dependent libraries
env.Append(CPPDEFINES=[
# ("WEBSERVER_RULES_DEBUG", "1")
])
if os.path.isfile('src/Custom.h'):
env.Append(CPPDEFINES=["USE_CUSTOM_H"])
else:
env.Append(CPPDEFINES=[
"CONTROLLER_SET_ALL",
"NOTIFIER_SET_NONE",
"PLUGIN_SET_ONLY_SWITCH",
"USES_P001", # Switch
"USES_P002", # ADC
"USES_P004", # Dallas DS18b20
"USES_P028", # BME280
"USES_P036", # FrameOLED
"USES_P049", # MHZ19
"USES_P052", # SenseAir
"USES_P056", # SDS011-Dust
"USES_P059", # Encoder
"USES_P082", # GPS
"USES_P087", # Serial Proxy
"USE_SETTINGS_ARCHIVE"
])
print(env['CPPDEFINES'])