Page 1 of 1

ESP32 S3 on two different computers same esp-idf

Posted: Thu Sep 24, 2026 6:00 pm
by stefan.erni
Hi Ben

I have two different computers and want to have exactly the same menu configuration settings.
Should I delete the entire mtxesp32_s3_sdconfig folder on one computer and copy it from the other, or is there another way?

this folder:
2026-09-24_18-51-08.PNG
2026-09-24_18-51-08.PNG (62.19 KiB) Viewed 100 times
or files.
2026-09-24_18-58-42.PNG
2026-09-24_18-58-42.PNG (31.38 KiB) Viewed 100 times

Re: ESP32 S3 on two different computers same esp-idf

Posted: Fri Sep 25, 2026 10:30 am
by BenR
Hello,

Yes that's how I would do it and probably the easiest way. I use a tool called freefilesync which if one of the computers shared the folder to the network could be synced together using the tool. If both computers share the folder then you would be able to sync from either.

I don't think you can use the remote shared folder directly as your compile folder as that would be ideal. C compilers don't tend to like this.

Re: ESP32 S3 on two different computers same esp-idf

Posted: Fri Sep 25, 2026 11:08 am
by mnfisher
...

After editing the file using idf.py menuconfig - can you just copy the sdkconfig file from the project directory?

Haven't tested - but if you edit for a 'custom' config it would save doing it twice...

Re: ESP32 S3 on two different computers same esp-idf

Posted: Fri Sep 25, 2026 1:46 pm
by stefan.erni
Hi Ben, Hi Martin

I'll try both: the entire folder and also a specific config file.
If it works,I'm going to sync my computers

And I add the files to my batch file for backup or flash

I soon also add the .fcfx file and the docu.HTML
I hope I haven't forgotten anything else :)

When I'm done with the project, I copy the project file, the bin files and config files right away in a folder.
From there, I can then flash or restore my project.
For flash them using a tool (flash_download_tool_3.9.11)
That way, I always have exactly the same program on every new device, and it goes very quickly.
To do this, I use a batch file and then copy `flash_download_tool_3.9.11` into the folder an run it

using in a batchfile:

Code: Select all

@echo off
for /f %%i in ('powershell -command "Get-Date -Format yyyy_MM_dd"') do set datum=%%i
mkdir "%cd%\Backup_bin_%datum%"

copy "C:\FC_ESP\mtxesp32_s3_sdkconfig\build\bootloader\bootloader.bin" "Backup_bin_%datum%"
copy "C:\FC_ESP\mtxesp32_s3_sdkconfig\build\esp-project.bin" "Backup_bin_%datum%"
copy "C:\FC_ESP\mtxesp32_s3_sdkconfig\build\partition_table\partition-table.bin" "Backup_bin_%datum%"


All the file for flash:
2026-09-25_13-56-03.PNG
2026-09-25_13-56-03.PNG (31.02 KiB) Viewed 19 times



flash_download_tool:
2026-09-17_11-04-34.PNG
2026-09-17_11-04-34.PNG (117.97 KiB) Viewed 19 times