From 685d549701b5603b8ddd720b8717f52c1617cc59 Mon Sep 17 00:00:00 2001 From: Liz Date: Mon, 13 Jan 2025 16:21:28 -0500 Subject: [PATCH] psram example very simple psram example for feather rp2350 guide --- Feather_RP2350_Examples/CircuitPython_PSRAM/code.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Feather_RP2350_Examples/CircuitPython_PSRAM/code.py diff --git a/Feather_RP2350_Examples/CircuitPython_PSRAM/code.py b/Feather_RP2350_Examples/CircuitPython_PSRAM/code.py new file mode 100644 index 000000000..50f7b2e09 --- /dev/null +++ b/Feather_RP2350_Examples/CircuitPython_PSRAM/code.py @@ -0,0 +1,5 @@ +# SPDX-FileCopyrightText: 2024 Liz Clark for Adafruit Industries +# SPDX-License-Identifier: MIT +import gc + +print(gc.mem_free())