summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreggfly <lihaohua90@gmail.com>2024-12-23 19:40:06 +0800
committerDamien George <damien@micropython.org>2025-02-07 13:13:26 +1100
commit71e8b27b26f46f11f642381d4f6699ee1fc073f6 (patch)
tree093a2985d7db56efe81bb7541c96a3c5c098e87d
parent921f19fc9d697488f4f86bf8db73d43b04b781a6 (diff)
esp32/README: Fix board in octal-SPIRAM example make command.
Signed-off-by: eggfly <lihaohua90@gmail.com>
-rw-r--r--ports/esp32/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/esp32/README.md b/ports/esp32/README.md
index 8597c85ec..6ed7eddb8 100644
--- a/ports/esp32/README.md
+++ b/ports/esp32/README.md
@@ -152,7 +152,7 @@ $ make BOARD=ESP32_GENERIC BOARD_VARIANT=OTA
or to enable octal-SPIRAM support for the `ESP32_GENERIC_S3` board:
```bash
-$ make BOARD=ESP32_GENERIC BOARD_VARIANT=SPIRAM_OCT
+$ make BOARD=ESP32_GENERIC_S3 BOARD_VARIANT=SPIRAM_OCT
```