| 15 | extern "C" { |
| 16 | |
| 17 | void app_main() { |
| 18 | static const tt::Configuration config = { |
| 19 | /** |
| 20 | * Auto-select a board based on the ./sdkconfig.board.* file |
| 21 | * that you copied to ./sdkconfig before you opened this project. |
| 22 | */ |
| 23 | .hardware = &hardwareConfiguration |
| 24 | }; |
| 25 | |
| 26 | #ifdef ESP_PLATFORM |
| 27 | tt_init_tactility_c(); // ELF bindings for side-loading on ESP32 |
| 28 | #endif |
| 29 | |
| 30 | tt::run(config, dts_modules, dts_devices); |
| 31 | } |
| 32 | |
| 33 | } // extern |
nothing calls this directly
no test coverage detected