exercises: add Exercise 08 SystemStartup scaffold with early SPI deselect and SD/OLED startup orchestration

This commit is contained in:
John Poole 2026-02-16 18:18:32 -08:00
commit 322a77bfe4
9 changed files with 720 additions and 0 deletions

View file

@ -0,0 +1,21 @@
// 20260216 ChatGPT
// $Id$
// $HeadURL$
#include <Arduino.h>
#include "SystemStartup.h"
static SystemStartup g_systemStartup(Serial);
void setup() {
Serial.begin(115200);
System.println("Example 08: setup() called. About to call g_systemStartup.begin().");
g_systemStartup.begin();
System.println("After g_systemStartup() in setup().");
}
void loop() {
g_systemStartup.update();
System.println("Example 08 loop() called and after g_systemStartup.update().");
delay(1000);
}