Page 1 of 1

Can not program ESP-S3 with Flash Download Tool

Posted: Thu Jun 22, 2023 8:23 am
by Douglas-EDM
Good day,

I'm trying to download the bin file to an ESP32-S3 on a custom PCB using Flash Download tool v3.9.5 and an ESP-prog, but it does not work.
I am able to upload and run my firmware using Platform,io.
Screenshot 2023-06-22 101858.png
Screenshot 2023-06-22 101858.png (36.27 KiB) Viewed 5358 times
Screenshot 2023-06-22 101945.png
Screenshot 2023-06-22 101945.png (14.53 KiB) Viewed 5358 times
Any suggestions on how to get this working?

Re: Can not program ESP-S3 with Flash Download Tool

Posted: Fri Jun 23, 2023 2:06 am
by ESP_Sprite
Looks to me like it successfully flashed; how do you figure it didn't work?

Re: Can not program ESP-S3 with Flash Download Tool

Posted: Fri Jun 23, 2023 11:21 am
by Douglas-EDM
I tested it with a board with the firmware already loaded through my IDE.
After I upload using flash tool the code doesn't start up.
Are my addresses maybe wrong?

Re: Can not program ESP-S3 with Flash Download Tool

Posted: Sat Jun 24, 2023 1:58 am
by ESP_Sprite
Possibly. If any, I seem to recall that for an S3 the bootloader starts at address 0. Not sure if PIO works that way as well, but for ESP-IDF, after flashing, you can find a file called 'flash_args' in the build folder that tells you where the binaries should be flashed.

Re: Can not program ESP-S3 with Flash Download Tool

Posted: Wed Jun 28, 2023 7:06 am
by Douglas-EDM
This worked, setting the bootloader to address 0x00.
Thank you

Re: Can not program ESP-S3 with Flash Download Tool

Posted: Sat Nov 04, 2023 3:01 am
by ESP_noob
Hi, I am using the C3 and I have the same issue. The flash runs all the way and indicates "finish", but the the program is supposed to flashing some LEDs and it is not. How did you resolve it?

P.S: I have already set the bootloader to 0x00. I am just wondering if you can suggest anything to me.

Re: Can not program ESP-S3 with Flash Download Tool

Posted: Mon Jun 17, 2024 1:54 am
by jatkins2431
ESP_Sprite wrote:
Sat Jun 24, 2023 1:58 am
Possibly. If any, I seem to recall that for an S3 the bootloader starts at address 0. Not sure if PIO works that way as well, but for ESP-IDF, after flashing, you can find a file called 'flash_args' in the build folder that tells you where the binaries should be flashed.
This was correct and fixed my problem. Thank you!