Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: init wifi but skip autoconnect — iw scan causes 65ms frame drops

WiFi thread starts but doesn't scan until user requests it.
system("iw scan") triggers kernel radio scanning that blocks DRM
page flips for 65ms+ (4 missed vblanks). User can manually trigger
WiFi from the prompt when needed.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+2 -1
+2 -1
fedac/native/src/ac-native.c
··· 2287 2287 if (!headless && display) 2288 2288 draw_boot_status(&graph, screen, display, "starting wifi...", pixel_scale); 2289 2289 wifi = wifi_init(); 2290 - if (wifi) wifi_autoconnect(wifi); 2290 + // Don't autoconnect — iw scan blocks DRM page flip for 65ms+. 2291 + // WiFi scans only when user explicitly requests from prompt. 2291 2292 } else { 2292 2293 if (!headless && display) 2293 2294 draw_boot_status(&graph, screen, display, "wifi disabled", pixel_scale);