Skip to content

Commit

Permalink
Merge branch 'ble-mesh-eth' into 'main'
Browse files Browse the repository at this point in the history
Add support of ethernet in ble-mesh platform

See merge request app-frameworks/esp-matter!506
  • Loading branch information
dhrishi committed Oct 9, 2023
2 parents 744c144 + 2f6c54a commit f1e7e14
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ declare_args() {
chip_max_discovered_ip_addresses = 5
chip_use_secure_cert_dac_provider = false
chip_use_esp32_ecdsa_peripheral = false
chip_enable_ethernet = false
chip_enable_route_hook = false
}

Expand Down Expand Up @@ -171,6 +172,13 @@ static_library("ESP32_custom") {
}
}

if (chip_enable_ethernet) {
sources += [
"ConnectivityManagerImpl_Ethernet.cpp",
"NetworkCommissioningDriver_Ethernet.cpp",
]
}

if (chip_mdns == "platform") {
sources += [ "DnssdImpl.cpp" ]
}
Expand Down

0 comments on commit f1e7e14

Please sign in to comment.