| 115 | } |
| 116 | |
| 117 | void stopElf() { |
| 118 | LOGGER.info("Cleaning up ELF"); |
| 119 | |
| 120 | if (shouldCleanupElf) { |
| 121 | esp_elf_deinit(&elf); |
| 122 | } |
| 123 | |
| 124 | if (elfFileData != nullptr) { |
| 125 | elfFileData = nullptr; |
| 126 | } |
| 127 | } |
| 128 | |
| 129 | public: |
| 130 |
nothing calls this directly
no test coverage detected