From 32a2d55e1944fd9a744154ee0d6701dd5c43507a Mon Sep 17 00:00:00 2001 From: Achyuth Jayadevan Date: Wed, 30 Oct 2024 16:42:23 +0530 Subject: [PATCH] Fix incorrect import of `pc` --- .../SeeedStudio_XIAO_ESP32C3/XIAO_ESP32C3_with_MicroPython.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Sensor/SeeedStudio_XIAO/SeeedStudio_XIAO_ESP32C3/XIAO_ESP32C3_with_MicroPython.md b/docs/Sensor/SeeedStudio_XIAO/SeeedStudio_XIAO_ESP32C3/XIAO_ESP32C3_with_MicroPython.md index b7fa6b2a639e..c8197536ffa0 100644 --- a/docs/Sensor/SeeedStudio_XIAO/SeeedStudio_XIAO_ESP32C3/XIAO_ESP32C3_with_MicroPython.md +++ b/docs/Sensor/SeeedStudio_XIAO/SeeedStudio_XIAO_ESP32C3/XIAO_ESP32C3_with_MicroPython.md @@ -118,7 +118,7 @@ Go to Run-->Configure Interpreter, and ensure that the Interpreter tab in the Th Click "OK" on the dialog and you should be presented with the Micropython shell at the bottom of the thonny window as shown in the figure below. Enter scripy line by line to the Shell to get the flash and sram size: ```python -import pc +import gc gc.mem_free() import esp