fix psram setup messages
This commit is contained in:
parent
c4b79a11ae
commit
a2454f84f8
3 changed files with 2 additions and 8 deletions
|
|
@ -26,9 +26,7 @@ displayio.release_displays()
|
|||
|
||||
if espidf.get_reserved_psram() < 1047586:
|
||||
print("""Place the following line in CIRCUITPY/settings.toml, then hard-reset the board:
|
||||
```
|
||||
CIRCUITPY_RESERVED_PSRAM
|
||||
```
|
||||
CIRCUITPY_RESERVED_PSRAM=1048576
|
||||
""")
|
||||
raise SystemExit
|
||||
|
||||
|
|
|
|||
|
|
@ -73,9 +73,7 @@ display = displayio.Display(display_bus, _INIT_SEQUENCE, width=320, height=240)
|
|||
|
||||
if espidf.get_reserved_psram() < 1047586:
|
||||
print("""Place the following line in CIRCUITPY/settings.toml, then hard-reset the board:
|
||||
```
|
||||
CIRCUITPY_RESERVED_PSRAM=1048576
|
||||
```
|
||||
""")
|
||||
raise SystemExit
|
||||
|
||||
|
|
|
|||
|
|
@ -62,9 +62,7 @@ display = displayio.Display(display_bus, _INIT_SEQUENCE, width=320, height=240)
|
|||
|
||||
if espidf.get_reserved_psram() < 1047586:
|
||||
print("""Place the following line in CIRCUITPY/settings.toml, then hard-reset the board:
|
||||
```
|
||||
CIRCUITPY_RESERVED_PSRAM
|
||||
```
|
||||
CIRCUITPY_RESERVED_PSRAM=1048576
|
||||
""")
|
||||
raise SystemExit
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue