OVMS3-idf/tools/test_apps/protocols/esp_netif/build_config
2020-02-10 19:40:28 +01:00
..
main ESP-NETIF: add CI compile only tests for common init/config pattern in C/C++ 2020-02-10 19:40:28 +01:00
CMakeLists.txt ESP-NETIF: add CI compile only tests for common init/config pattern in C/C++ 2020-02-10 19:40:28 +01:00
README.md ESP-NETIF: add CI compile only tests for common init/config pattern in C/C++ 2020-02-10 19:40:28 +01:00

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.