1
1
# MicroPython for Kendryte K210
2
2
3
3
4
- Three prebuilt firmwares are provided:
4
+ Four prebuilt firmwares are provided:
5
5
6
6
* ` default ` default configuration, no sqlite module, one MicroPython task; in this directory
7
7
* ` sqlite ` default configuration, sqlite module included, one MicroPython task; in ` sqlite ` directory
8
8
* ` twotasks ` no KPU (8 MB SRAM used), sqlite module included, two MicroPython task; in ` twotasks ` directory
9
- * ` default ` default configuration, no sqlite module, one MicroPython task, ** OTA enabled** ; in ` ota ` directory
9
+ * ` ota ` default configuration, no sqlite module, one MicroPython task, ** OTA enabled** ; in ` ota ` directory
10
10
11
11
To flash the pre-built firmware to your K210 board, run (in this directory):
12
12
13
13
```
14
- ./kflash .py -p /dev/ttyUSB0 -b 2000000 -t MicroPython.bin
14
+ ./ktool .py -p /dev/ttyUSB0 -b 2000000 -t MicroPython.bin
15
15
```
16
16
17
17
Change * /dev/ttyUSB0* to the port used to connect to the board if needed.<br >
@@ -28,6 +28,10 @@ _Kboot bootloader_ is included in `ota/MicroPython.kfpkg`, when flashing for the
28
28
29
29
After the _ Kboot bootloader_ is flashed, you can later flash only the MicroPython binary using the command:
30
30
31
+ ``` console
32
+ ./ktool.py -p /dev/ttyUSB0 -a 65536 -b 2000000 -t MicroPython.bin
31
33
```
32
- ./kflash.py -p /dev/ttyUSB0 -a 65536 -b 2000000 -t MicroPython.bin
33
- ```
34
+
35
+ <hr >
36
+
37
+ ** ` wifi ` ** directory contains the ESP8266/ESP8285 firmwares.
0 commit comments