Skip to content

Commit

Permalink
Some typos fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
loboris committed Feb 6, 2020
1 parent 3bc0570 commit 1efaac0
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions firmware/README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# MicroPython for Kendryte K210


Three prebuilt firmwares are provided:
Four prebuilt firmwares are provided:

* `default` default configuration, no sqlite module, one MicroPython task; in this directory
* `sqlite` default configuration, sqlite module included, one MicroPython task; in `sqlite` directory
* `twotasks` no KPU (8 MB SRAM used), sqlite module included, two MicroPython task; in `twotasks` directory
* `default` default configuration, no sqlite module, one MicroPython task, **OTA enabled**; in `ota` directory
* `ota` default configuration, no sqlite module, one MicroPython task, **OTA enabled**; in `ota` directory

To flash the pre-built firmware to your K210 board, run (in this directory):

```
./kflash.py -p /dev/ttyUSB0 -b 2000000 -t MicroPython.bin
./ktool.py -p /dev/ttyUSB0 -b 2000000 -t MicroPython.bin
```

Change */dev/ttyUSB0* to the port used to connect to the board if needed.<br>
Expand All @@ -28,6 +28,10 @@ _Kboot bootloader_ is included in `ota/MicroPython.kfpkg`, when flashing for the

After the _Kboot bootloader_ is flashed, you can later flash only the MicroPython binary using the command:

```console
./ktool.py -p /dev/ttyUSB0 -a 65536 -b 2000000 -t MicroPython.bin
```
./kflash.py -p /dev/ttyUSB0 -a 65536 -b 2000000 -t MicroPython.bin
```

<hr>

**`wifi`** directory contains the ESP8266/ESP8285 firmwares.

0 comments on commit 1efaac0

Please sign in to comment.