esp-idf/tools/test_apps/protocols/esp_netif/build_config
David Cermak 38dec0be48 esp-netif: Support non-lwip mode, add test
It is required to define a mandatory dependency on lwip, so we
introduced esp_netif_stack component and made it require lwip, instead
of directly depending on lwip.
This enables building w-out lwip and support other TCP/IP stacks.
2022-12-14 14:12:50 +00:00
..
main esp-netif: Support non-lwip mode, add test 2022-12-14 14:12:50 +00:00
CMakeLists.txt tools: Increase the minimal supported CMake version to 3.16 2022-06-01 06:35:02 +00:00
README.md docs: changes docs supported targets tables 2022-07-14 08:26:32 +08:00
sdkconfig.defaults esp-netif: Support non-lwip mode, add test 2022-12-14 14:12:50 +00:00

Supported Targets ESP32 ESP32-C3 ESP32-S2

Build only test for C++/C configuration

This test application aims to exercise different configuration options using standard espressif initialization pattern:

component_config cfg = COMPONENT_DEFAULT_CFG();
cfg.member1 = custom_config_for_member1;
...
cfg.memberN = custom_config_for_memberN;
esp_err_t = component_init(cfg);

To be build with both C++ and C compilers.