Skip to content

Commit f116a3e

Browse files
update docs
1 parent 24bce3a commit f116a3e

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

docs/apps/creating-apps.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@ Just copy or move your the top-level folder `com.micropythonos.helloworld/` (and
9191

9292
On the ESP32, you can use MicroPython tools such as [mpremote.py](https://github.com/micropython/micropython/tree/master/tools/mpremote) to copy files and folders from-to your device using the MicroPython REPL.
9393

94+
It's also included in the MicroPythonOS repo at `./lvgl_micropython/lib/micropython/tools/mpremote/mpremote.py`
95+
9496
Then connect your device with a cable and install your app using:
9597

9698
```

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ But if you need to install a version that's not available there, or you built yo
3131
Any serial client will do, but it's convenient to use the `mpremote.py` tool that's shipped with lvgl_micropython:
3232
3333
```
34-
lvgl_micropython/lib/micropython/tools/mpremote/mpremote.py
34+
./lvgl_micropython/lib/micropython/tools/mpremote/mpremote.py
3535
```
3636
3737
5. **Populate the filesystem** (only for development)
@@ -63,7 +63,7 @@ But if you need to install a version that's not available there, or you built yo
6363
6464
<pre>
6565
```
66-
mpremote.py cp internal_filesystem/lib/mpos/device_info.py :/lib/mpos
66+
./lvgl_micropython/lib/micropython/tools/mpremote/mpremote.py cp internal_filesystem/lib/mpos/device_info.py :/lib/mpos
6767
```
6868
</pre>
6969

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44

55
If you built from source, you will already have a local clone that contains it.
66

7-
If you used a pre-built binary, you can download the accompanying "Source code" zip from the [releases page](https://github.com/MicroPythonOS/MicroPythonOS/releases) and extract the internal_filesystem/ folder from it.
7+
If you'll be using a pre-built binary, you can download the accompanying "Source code" zip from the [releases page](https://github.com/MicroPythonOS/MicroPythonOS/releases) and extract it.
88

99
2. **Make sure you have the software**
1010

11-
The easiest is to downloaded a pre-built binary (like `MicroPythonOS_amd64_macOS_0.7.1.bin` or `MicroPythonOS_amd64_linux_0.7.1.elf`) from the [releases page](https://github.com/MicroPythonOS/MicroPythonOS/releases).
11+
The easiest is to downloaded a pre-built binary (like `MicroPythonOS_arm64_macOS_0.9.0.bin` or `MicroPythonOS_x64_linux_0.9.0.elf`) from the [releases page](https://github.com/MicroPythonOS/MicroPythonOS/releases).
1212

1313
After downloading it, put it in the right location like this:
1414

1515
<pre>
1616
```
17-
mkdir -p lvgl_micropython/build # do this from within in the folder MicroPythonOS/ you cloned in step 1
17+
mkdir -p lvgl_micropython/build # do this from the top level folder MicroPythonOS from step 1
1818
cp /Users/yourname/MicroPythonOS_amd64_macOS_0.7.1.bin lvgl_micropython/build/lvgl_micropy_macOS # for macOS
1919
cp /home/yourname/MicroPythonOS_amd64_linux_0.7.1.elf lvgl_micropython/build/lvgl_micropy_unix # for Linux or WSL2 on Windows 11
2020
```

0 commit comments

Comments
 (0)