mirror of
https://github.com/thelsing/knx.git
synced 2024-12-18 19:08:18 +01:00
1d01317845
* Update .travis.yml * Update platformio.ini * Update .travis.yml * Fix compilation * Change platformio config * Try to fix travis build * save work * save work * save work * save work * save work * save work * save work * save work * save work * save work * save work * save work * save work * save work * save work * save work * save work * Add new pio config for CI * save work * save work * save work * save work * Try to fix CI run for example knx-linux * Fix compilation * Try to fix ESP8266 compilation * Do not enable cEMI server per default. Is only enabled during platformio build externally
12 lines
273 B
Python
12 lines
273 B
Python
Import("env")
|
|
|
|
# access to global build environment
|
|
print(env)
|
|
|
|
board_config = env.BoardConfig()
|
|
board_config.update("build.hwids", [
|
|
# ["0x135e", "0x0024"] # Merten GmbH & Co. KG
|
|
# ["0x0E77", "0x2001"] # Weinzierl Engineering GmbH
|
|
["0x7660", "0x0002"] # KNX Assoc.
|
|
])
|