From ebfb0d69fdd5c5aee8dc53d581e1b5301191c868 Mon Sep 17 00:00:00 2001 From: Alberto Bettin Date: Thu, 28 Oct 2021 00:03:55 +0200 Subject: [PATCH] Fix spell check --- docs/Sw_getting_started.md | 2 +- script/esp32_binary_merger/merge_bin_esp.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/Sw_getting_started.md b/docs/Sw_getting_started.md index d9bbcee..d2d9fe3 100644 --- a/docs/Sw_getting_started.md +++ b/docs/Sw_getting_started.md @@ -3,7 +3,7 @@ ## 1a. Flash a pre-built firmware Download the most recent version of the firmware https://github.com/Bettapro/Solar-Tracer-Blynk-V3/releases . -Download the correct bif file dependeing on the board you're gonna use: +Download the correct bif file depending on the board you're gonna use: - SolarTracerBlynk_3.x.x_esp32dev_FULL.bin - full bin file to use on a ESP32 (it includes all the bin needed eg: bootloader, firmware ...), use it on the very first setup. - SolarTracerBlynk_3.x.x_esp8266.bin - bin file to use on a ESP8266. diff --git a/script/esp32_binary_merger/merge_bin_esp.py b/script/esp32_binary_merger/merge_bin_esp.py index 8be868a..4217766 100644 --- a/script/esp32_binary_merger/merge_bin_esp.py +++ b/script/esp32_binary_merger/merge_bin_esp.py @@ -67,10 +67,10 @@ def main(): help = 'Input folder path') parser.add_argument( '--bin_path',nargs='+',required=True, - help = 'List of bin path, same order as bin_address (space seperated)') + help = 'List of bin path, same order as bin_address (space separated)') parser.add_argument( '--bin_address',nargs='+',type=lambda x: int(x,0),required=True, - help = 'List of addr, same order as bin_path (space seperated)') + help = 'List of addr, same order as bin_path (space separated)') parser.add_argument args = parser.parse_args() mb = multiple_bin(args.output_name, args.output_folder)