mirror of
https://github.com/thelsing/knx.git
synced 2024-12-18 19:08:18 +01:00
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:
parent
8405d1f47d
commit
73df7fd28c
@ -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
|
||||
|
@ -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
|
||||
|
@ -28,3 +28,4 @@ build_flags =
|
||||
-DUSE_USB
|
||||
-DUSE_TINYUSB
|
||||
-Wno-unknown-pragmas
|
||||
-DUSE_DATASECURE
|
||||
|
@ -57,7 +57,8 @@
|
||||
#endif
|
||||
|
||||
// KNX Data Secure Options
|
||||
#define USE_DATASECURE
|
||||
// Define via a compiler -D flag if required
|
||||
// #define USE_DATASECURE
|
||||
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user