upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/main/tollgate_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main/tollgate_main.c')
-rw-r--r--main/tollgate_main.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/main/tollgate_main.c b/main/tollgate_main.c
index fa7a692..4741765 100644
--- a/main/tollgate_main.c
+++ b/main/tollgate_main.c
@@ -23,6 +23,10 @@
23#include "tollgate_client.h" 23#include "tollgate_client.h"
24#include "lightning_payout.h" 24#include "lightning_payout.h"
25#include "cvm_server.h" 25#include "cvm_server.h"
26#include "display.h"
27#include "local_relay.h"
28#include "relay_selector.h"
29#include "sync_manager.h"
26 30
27#define MAX_STA_RETRY 5 31#define MAX_STA_RETRY 5
28static const char *TAG = "tollgate_main"; 32static const char *TAG = "tollgate_main";
@@ -178,6 +182,11 @@ static void start_services(void)
178 s_services_running = true; 182 s_services_running = true;
179 if (s_services_mutex) xSemaphoreGive(s_services_mutex); 183 if (s_services_mutex) xSemaphoreGive(s_services_mutex);
180 ESP_LOGI(TAG, "=== TollGate services started ==="); 184 ESP_LOGI(TAG, "=== TollGate services started ===");
185
186 display_set_state(DISPLAY_READY);
187 char portal_url[128];
188 snprintf(portal_url, sizeof(portal_url), "http://%s/", cfg->ap_ip_str);
189 display_update(cfg->ap_ssid, 0, 0, portal_url);
181} 190}
182 191
183static void stop_services(void) 192static void stop_services(void)
@@ -261,6 +270,9 @@ void app_main(void)
261{ 270{
262 ESP_LOGI(TAG, "=== TollGate ESP32 Starting ==="); 271 ESP_LOGI(TAG, "=== TollGate ESP32 Starting ===");
263 272
273 display_init();
274 display_set_state(DISPLAY_BOOT);
275
264 esp_err_t ret = nvs_flash_init(); 276 esp_err_t ret = nvs_flash_init();
265 if (ret == ESP_ERR_NVS_NO_FREE_PAGES || ret == ESP_ERR_NVS_NEW_VERSION_FOUND) { 277 if (ret == ESP_ERR_NVS_NO_FREE_PAGES || ret == ESP_ERR_NVS_NEW_VERSION_FOUND) {
266 ESP_ERROR_CHECK(nvs_flash_erase()); 278 ESP_ERROR_CHECK(nvs_flash_erase());