From 4afdfff4b7f0bb57d9e10360e926ecdb1ada3408 Mon Sep 17 00:00:00 2001 From: River <97197236+River-b@users.noreply.github.com> Date: Wed, 15 Feb 2023 14:22:20 -0800 Subject: [PATCH 1/2] Update README.md syntax error in instructions. this command as written will not work because if flag --chip is used it needs to be --chip=bl70x with the "=" does not work: blisp write --chip bl70x --reset name_of_firmware.bin or if "=" is not desired then "-c bl70x" could be used instead. -c, --chip= Chip Type --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e8491ae..b68ae26 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,9 @@ cmake --build . For BL70X, BL61X, BL808 and BL606P, connected via USB, you can use following command, which will auto-detect serial port: ```bash -blisp write --chip bl70x --reset name_of_firmware.bin +.\blisp.exe write --chip=bl70x --reset .\name_of_firmware.bin +or +.\blisp.exe write -c bl70x --reset .\name_of_firmware.bin ``` For BL60X, you need to specify also the serial port path: From 3d4dfe8b8173842412522ed4c352a41422998f7a Mon Sep 17 00:00:00 2001 From: Marek Kraus Date: Tue, 28 Feb 2023 11:23:18 +0100 Subject: [PATCH 2/2] Add BL602 branded MCUs --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b68ae26..97e51c7 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Open source tool and library for flashing Bouffalo RISC-V MCUs. # Supported MCUs -- [x] `bl60x` - BL602 / BL604 +- [x] `bl60x` - BL602 / BL604 / TG7100C / LF686 / LF688 - [x] `bl70x` - BL702 / BL704 / BL706 - [ ] `bl70xl` - BL702L / BL704L - [ ] `bl606p` - BL606P