From 7669ebbbcb6da18cc4c424fd04b2bb17eabe6742 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] 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: