Boot direct sur AmigaUIShell sans scénario par défaut

- Commenté refreshSceneIfNeeded(true) et startPendingAudioIfAny() dans setup()
- Le système démarre maintenant directement sur la grille d'applications Amiga
- Améliore l'UX: accès immédiat aux 8 apps actives au boot
- Le chargement de scénario DEFAULT.json n'écrase plus l'UI au démarrage

Tests:
- ✓ Compilation: 35s, RAM 87.5%, Flash 41.1%
- ✓ Upload firmware: 93s
- ✓ Device PONG: opérationnel
This commit is contained in:
L'électron rare
2026-03-11 00:03:58 +01:00
parent ded19f2d76
commit e816b06f5c
+4 -2
View File
@@ -3711,8 +3711,10 @@ void setup() {
g_ui.setLaDetectionState(false, 0U, 0U, g_hardware_cfg.mic_la_stable_ms, 0U, g_hardware_cfg.mic_la_timeout_ms); g_ui.setLaDetectionState(false, 0U, 0U, g_hardware_cfg.mic_la_stable_ms, 0U, g_hardware_cfg.mic_la_timeout_ms);
g_ui.setHardwareSnapshotRef(&g_hardware.snapshotRef()); g_ui.setHardwareSnapshotRef(&g_hardware.snapshotRef());
refreshSceneIfNeeded(true);
startPendingAudioIfAny(); // Boot directly to Amiga UI Shell (skip default scenario rendering)
// refreshSceneIfNeeded(true);
// startPendingAudioIfAny();
} }
void loop() { void loop() {