File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -29,21 +29,15 @@ This feature is crucial to fix potential security or functionality flaws.
29
29
First you must install [ esptool] ( https://github.com/espressif/esptool ) .
30
30
31
31
Go to ` bin ` directory located in virkey working directory.
32
- Replace COM_PORT with the correct com port.
33
- Replace BOARD_XXX.bin with the correct board file.
34
- Run this command:
32
+ Run this command replacing COM_PORT with the correct com port and BOARD_XXX.bin with the correct board file.
35
33
```
36
34
esptool.py --chip esp32 --port COM_PORT --baud 115200 --before default_reset --after hard_reset write_flash -z --flash_mode dio --flash_freq 40m --flash_size detect 0x1000 bootloader.bin 0x10000 BOARD_XXX.bin 0x8000 partitions.bin
37
35
```
38
36
39
- If you want erase full flash before flash virkey (you will lose previous configurations), Run this command:
37
+ If you want erase full flash before flash virkey (you will lose previous configurations), run this command:
40
38
```
41
39
esptool.py --chip esp32 --port COM_PORT --baud 115200 erase_flash
42
40
```
43
-
44
-
45
-
46
-
47
41
## Compile sources
48
42
Follow [ esp-idf] ( https://github.com/espressif/esp-idf ) install instructions.
49
43
You can’t perform that action at this time.
0 commit comments