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:
authorYour Name <you@example.com>2026-05-20 02:18:36 +0530
committerYour Name <you@example.com>2026-05-20 02:18:36 +0530
commitf4f85f938405867be89cfee029d5117cb1b4ac69 (patch)
tree3eeb8157410ead5a0ff17abc3551cfe09e778d50 /main/tollgate_main.c
parent899016795c389151e6b486ec470653f5688e5c5f (diff)
fix: resolve display-fix merge conflicts
- Update display_update() call to match new signature (7 args) - Add tollgate_config_add_wifi() implementation for WiFi setup UI
Diffstat (limited to 'main/tollgate_main.c')
-rw-r--r--main/tollgate_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/tollgate_main.c b/main/tollgate_main.c
index 561fc3f..6c85b28 100644
--- a/main/tollgate_main.c
+++ b/main/tollgate_main.c
@@ -260,7 +260,7 @@ static void start_services(void)
260 display_set_state(DISPLAY_READY); 260 display_set_state(DISPLAY_READY);
261 char portal_url[128]; 261 char portal_url[128];
262 snprintf(portal_url, sizeof(portal_url), "http://%s/", cfg->ap_ip_str); 262 snprintf(portal_url, sizeof(portal_url), "http://%s/", cfg->ap_ip_str);
263 display_update(cfg->ap_ssid, 0, 0, portal_url); 263 display_update(cfg->ap_ssid, 0, 0, portal_url, cfg->mint_url, cfg->price_per_step, "connected");
264 } 264 }
265} 265}
266 266