From dcf42037b3da8a944b1918b3a4b42b3f516b1bfc Mon Sep 17 00:00:00 2001 From: Mateusz Faderewski Date: Tue, 21 Feb 2023 21:07:10 +0100 Subject: [PATCH] [SC64][DOCS] Added LED blink patterns meaning --- docs/00_quick_startup_guide.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/docs/00_quick_startup_guide.md b/docs/00_quick_startup_guide.md index 499e04a..9b11c4d 100644 --- a/docs/00_quick_startup_guide.md +++ b/docs/00_quick_startup_guide.md @@ -6,6 +6,7 @@ - [Running 64DD games](#running-64dd-games) - [Direct boot option](#direct-boot-option) - [Debug terminal](#debug-terminal) +- [LED blink patters](#led-blink-patters) --- @@ -71,3 +72,21 @@ Run `python3 sc64.py --boot direct-rom --rom path_to_rom.n64` to disable bootloa ## Debug terminal `sc64.py` supports UNFLoader protocol and has same functionality implemented as aforementioned program. Use argument `--debug` to activate it. + +--- + +## LED blink patters + +LED on SC64 board can blink in certain situations. Most of them during normal use are related to SD card access. Here's list of blink patters meaning: + +| Pattern | Meaning | +| ------------------------------------ | ------------------------------------------------------------------------------------------------------------ | +| Nx [Short ON - Short OFF] | SD card is being accessed (initialization or data read/write) or save writeback is in progress | +| Nx [Medium ON - Long OFF] | CIC region didn't match, please power off console and power on again | +| 2x [Very short ON - Short OFF] | Pattern used during firmware update process, it means that specific part of firmware has started programming | +| 10x [Very short ON - Very short OFF] | Firmware has been successfully updated | +| 30x [Long ON - Long OFF] | There was serious problem during firmware update, device is most likely bricked | + +Nx means that blink count is varied. + +LED blinking on SD card access can be disabled through `sc64.py` script. Please refer to included help for option to change the LED behavior.