esp-idf/tools/test_apps/protocols/esp_netif/build_config
David Cermak 7ae58e223d esp_netif/tests: Consolidate test_apps/unit_test
* Remove duplicated test cases
* Migrated remaining unit tests to test_apps
2023-02-01 14:17:09 +01: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 esp_netif/tests: Consolidate test_apps/unit_test 2023-02-01 14:17:09 +01:00
sdkconfig.defaults esp-netif: Support non-lwip mode, add test 2022-12-14 14:12:50 +00:00

Supported Targets ESP32 ESP32-C2

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.