esp-idf/tools/test_apps/protocols/esp_netif/build_config
Angus Gratton 66fb5a29bb Whitespace: Automated whitespace fixes (large commit)
Apply the pre-commit hook whitespace fixes to all files in the repo.

(Line endings, blank lines at end of file, trailing whitespace)
2020-11-11 07:36:35 +00:00
..
main Whitespace: Automated whitespace fixes (large commit) 2020-11-11 07:36:35 +00: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 ci: add more build test for esp32-s3 2020-10-27 17:22:17 +08:00

Supported Targets ESP32 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.