From f4dd620cf9328a6cbe6b5d8e866f20174b1ba675 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Desbiens?= Date: Mon, 22 Sep 2025 12:59:35 +0200 Subject: [PATCH 1/2] Added .cache and .theia to .gitignore. --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 86be8b8..9e53887 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,8 @@ .vscode/ .settings/ .metadata/ +.theia +.cache _deps/ build/ Debug/ From 2daaa2602238fa440b2d0c99d7a8f640cd19d725 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Desbiens?= Date: Mon, 22 Sep 2025 13:10:14 +0200 Subject: [PATCH 2/2] Added a call to wwd_network_connect to the main thread. --- MXChip/AZ3166/app/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/MXChip/AZ3166/app/main.c b/MXChip/AZ3166/app/main.c index 08c2d47..affd3d5 100644 --- a/MXChip/AZ3166/app/main.c +++ b/MXChip/AZ3166/app/main.c @@ -46,6 +46,7 @@ static void eclipsetx_thread_entry(ULONG parameter) printf("ERROR: Failed to initialize the network (0x%08x)\r\n", status); } + wwd_network_connect(); } void tx_application_define(void* first_unused_memory)