Skip to content

Commit 52daadf

Browse files
Update docs
1 parent c5cf67e commit 52daadf

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

docs/os-development/installing-on-esp32.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ But if you need to install a version that's not available there, or you built yo
1616
3. **Flash the firmware**
1717

1818
```
19-
~/.espressif/python_env/idf5.2_py3.9_env/bin/python -m esptool --chip esp32s3 0x0 firmware_file.bin
19+
~/.espressif/python_env/idf5.2_py3.9_env/bin/python -m esptool --chip esp32s3 write_flash 0x0 firmware_file.bin
2020
```
2121
22-
Add --erase-all if you want to erase the entire flash memory, so that no old files or apps will remain.
22+
Add the `--erase-all` option if you want to erase the entire flash memory, so that no old files or apps will remain.
2323
2424
There's also a convenient `./scripts/flash_over_usb.sh` script that will attempt to flash the latest firmware that you compiled yourself.
2525

docs/os-development/running-on-desktop.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,20 @@
22

33
1. Download a release binary (e.g., `MicroPythonOS_amd64_Linux`, `MicroPythonOS_amd64_MacOS`) or build your own [on MacOS](../os-development/macos.md) or [Linux](../os-development/linux.md).
44

5-
2. If you don't have a local clone yet then do it now, so you have the local_filesystem/ folder:
5+
2. Get the `local_filesystem/` folder
6+
7+
You probably already have a local clone that contains the [internal_filesystem](https://github.com/MicroPythonOS/MicroPythonOS/tree/main/internal_filesystem).
8+
9+
If not, then clone it now:
610

711
<pre>
812
```
9-
git clone https://github.com/MicroPythonOS/MicroPythonOS.git
13+
git clone --recurse-submodules https://github.com/MicroPythonOS/MicroPythonOS.git
1014
cd MicroPythonOS/
1115
```
1216
</pre>
1317

14-
3. Start it:
18+
3. Start it from the local_filesystem/ folder:
1519

1620
<pre>
1721
```

0 commit comments

Comments
 (0)