From 88fc2df04a9890924ad2962754b7adbe7af689fe Mon Sep 17 00:00:00 2001 From: Epic Curious <109078515+epiccurious@users.noreply.github.com> Date: Sun, 3 Dec 2023 12:37:21 -0500 Subject: [PATCH] Improve the comment --- device_specific/flash_the_ttgo_tdisplay | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/device_specific/flash_the_ttgo_tdisplay b/device_specific/flash_the_ttgo_tdisplay index df640b5..813339f 100755 --- a/device_specific/flash_the_ttgo_tdisplay +++ b/device_specific/flash_the_ttgo_tdisplay @@ -81,8 +81,7 @@ while [ ! -c "${tty_device}" ]; do read -srn1 -p "Connect your ${device} and PRESS ANY KEY to continue... " && echo done -# TODO: read the flash arguments from jade/build/flasher_args.json, -# like how esptool.py does, rather than hard-code the arguments +# TODO: Read the esptool arguments from jade/build/flasher_args.json like how esptool.py does, rather than hard-code sudo esptool --port "${tty_device}" write_flash --flash_mode dio --flash_size 4MB --flash_freq 40m 0x1000 build/bootloader/bootloader.bin 0x10000 build/jade.bin 0x9000 build/partition_table/partition-table.bin 0xe000 build/ota_data_initial.bin echo -e "\nSUCCESS! Your ${device} is now running Jade."