wifi working tested on hardware

This commit is contained in:
Adolfo Reyna
2025-12-10 08:09:38 -05:00
parent 47956bf64c
commit 65650a7b57
8 changed files with 305 additions and 25 deletions

View File

@@ -1,4 +1,5 @@
#include "epaper_manager.h"
#include "wifi_manager.h"
#include "pico/stdlib.h"
#include "pico/multicore.h"
#include <stdlib.h>
@@ -97,6 +98,9 @@ static void init_epaper_display() {
* Core 1 function: Runs display initialization and update handling
*/
static void core1_display_init() {
// Initialize WiFi on Core 1 so IRQs are handled here
wifi_init();
init_epaper_display();
g_display_ready = true;