Fix: "bool BauSystemBCoupler::configured()" (#112)

* Fix: "bool BauSystemBCoupler::configured()"
always returns false when KNXSecure is not supported/configured in ETS

* Update platformio-ci.ini

activate optional  USE_DATASECURE

* Update platformio-ci.ini

activate optional  USE_DATASECURE

* Update platformio-ci.ini

activate optional  USE_DATASECURE
This commit is contained in:
rueckix 2020-12-10 19:17:45 +01:00 committed by GitHub
parent 8405d1f47d
commit 73df7fd28c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 13 additions and 3 deletions

View File

@ -21,6 +21,7 @@ lib_deps =
build_flags =
-DMASK_VERSION=0x2920
-Wno-unknown-pragmas
-DUSE_DATASECURE
;-----------------------------------------------------------
@ -37,6 +38,7 @@ build_flags =
#build_flags =
# -DMASK_VERSION=0x091A
# -Wno-unknown-pragmas
# -DUSE_DATASECURE
;---------------------------------------------------------
@ -52,3 +54,4 @@ lib_deps =
build_flags =
-DMASK_VERSION=0x091A
-Wno-unknown-pragmas
-DUSE_DATASECURE

View File

@ -21,6 +21,7 @@ lib_deps =
build_flags =
-DMASK_VERSION=0x27B0
-Wno-unknown-pragmas
-DUSE_DATASECURE
;-----------------------------------------------------------
@ -34,8 +35,9 @@ lib_deps =
knx
build_flags =
-DMASK_VERSION=0x57B0
-Wno-unknown-pragmas
-DMASK_VERSION=0x57B0
-Wno-unknown-pragmas
-DUSE_DATASECURE
[env:nodemcuv2_tp]
platform = espressif8266
@ -48,6 +50,7 @@ lib_deps =
build_flags =
-DMASK_VERSION=0x07B0
-Wno-unknown-pragmas
-DUSE_DATASECURE
;---------------------------------------------------------
@ -63,6 +66,7 @@ lib_deps =
build_flags =
-DMASK_VERSION=0x57B0
-Wno-unknown-pragmas
-DUSE_DATASECURE
[env:esp32dev_tp]
platform = espressif32
@ -74,3 +78,4 @@ lib_deps =
build_flags =
-DMASK_VERSION=0x07B0
-Wno-unknown-pragmas
-DUSE_DATASECURE

View File

@ -28,3 +28,4 @@ build_flags =
-DUSE_USB
-DUSE_TINYUSB
-Wno-unknown-pragmas
-DUSE_DATASECURE

View File

@ -57,7 +57,8 @@
#endif
// KNX Data Secure Options
#define USE_DATASECURE
// Define via a compiler -D flag if required
// #define USE_DATASECURE
#endif