diff options
| author | Your Name <you@example.com> | 2026-05-19 16:16:54 +0530 |
|---|---|---|
| committer | Your Name <you@example.com> | 2026-05-19 16:16:54 +0530 |
| commit | 62bce81d26994bd242035905c94d611cf956bd37 (patch) | |
| tree | d3818ea8d36cc3d39406b48fa37eae70553faf74 /main/CMakeLists.txt | |
| parent | 4af9a0042f2dbe053cacec8427f7f370bd0e0f22 (diff) | |
- Create components/negentropy_lib/ wrapping negentropy submodule
- CMakeLists.txt references submodule sources via relative path
- OpenSSL SHA-256 compat using mbedTLS for ESP32
- Enables C++ exceptions + RTTI for negentropy_wrapper.cpp
- Remove esp_littlefs, esp_timer from REQUIRES (transitive via wisp_relay)
- Keep tcp_transport (direct dep of stratum_client.c via esp_transport.h)
- Fix config.c duplicate seed_relays/sync_interval/fallback_interval blocks
- Remove leftover merge conflict marker in tollgate_api.c
- Add MINER_INTEGRATION_PLAN.md with miner integration checklist
idf.py build: PASS (1.3MB, 68% free)
make test-unit: PASS (19 suites, 344+ assertions)
Diffstat (limited to 'main/CMakeLists.txt')
| -rw-r--r-- | main/CMakeLists.txt | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/main/CMakeLists.txt b/main/CMakeLists.txt index 0669b70..90000b7 100644 --- a/main/CMakeLists.txt +++ b/main/CMakeLists.txt | |||
| @@ -31,9 +31,8 @@ idf_component_register(SRCS "tollgate_main.c" | |||
| 31 | "sw_miner.c" | 31 | "sw_miner.c" |
| 32 | "asic_miner.c" | 32 | "asic_miner.c" |
| 33 | INCLUDE_DIRS "." | 33 | INCLUDE_DIRS "." |
| 34 | REQUIRES esp_wifi esp_event esp_netif nvs_flash esp_http_server | 34 | REQUIRES esp_wifi esp_event esp_netif nvs_flash esp_http_server |
| 35 | lwip json esp_http_client mbedtls esp-tls log spiffs | 35 | lwip json esp_http_client mbedtls esp-tls log spiffs |
| 36 | nucula_lib secp256k1 axs15231b qrcode wisp_relay | 36 | nucula_lib secp256k1 axs15231b qrcode wisp_relay |
| 37 | esp_littlefs negentropy | 37 | negentropy_lib tcp_transport |
| 38 | esp_timer tcp_transport | 38 | PRIV_REQUIRES esp-tls) |
| 39 | PRIV_REQUIRES esp-tls) | ||