2022-07-12 22:41:36 -04:00
|
|
|
| Supported Targets | ESP32 | ESP32-C3 | ESP32-S2 |
|
2020-12-14 22:00:02 -05:00
|
|
|
| ----------------- | ----- | -------- | -------- |
|
2020-10-20 06:08:15 -04:00
|
|
|
|
2020-02-10 10:20:10 -05: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.
|