1a8ee06ec1
- Added gateway_knx.cpp to handle KNX communication and DALI bridge requests. - Implemented functions for encoding/decoding KNX telegrams and managing group writes. - Introduced GatewayKnxBridge and GatewayKnxTpIpRouter classes for managing KNX to DALI routing and IP tunneling. - Added configuration handling for KNX settings, including UART and multicast options. - Implemented error handling and logging for various KNX operations. Signed-off-by: Tony <tonylu@tony-cloud.com>
23 lines
422 B
CMake
23 lines
422 B
CMake
set(GATEWAY_BRIDGE_REQUIRES
|
|
dali_domain
|
|
dali_cpp
|
|
espressif__cjson
|
|
esp_driver_uart
|
|
freertos
|
|
gateway_cache
|
|
gateway_knx
|
|
gateway_modbus
|
|
log
|
|
lwip
|
|
nvs_flash
|
|
)
|
|
|
|
idf_component_register(
|
|
SRCS "src/gateway_bridge.cpp"
|
|
INCLUDE_DIRS "include"
|
|
REQUIRES ${GATEWAY_BRIDGE_REQUIRES}
|
|
PRIV_REQUIRES gateway_bacnet
|
|
)
|
|
|
|
set_property(TARGET ${COMPONENT_LIB} PROPERTY CXX_STANDARD 17)
|