Search found 2 matches

by craige
Mon Aug 19, 2024 2:07 pm
Forum: General Discussion
Topic: Speeding up/automating programming of devices
Replies: 3
Views: 1092

Re: Speeding up/automating programming of devices

@aliarifat794 Instead of a fixed TIMEOUT, consider using a loop that checks when the flash encryption is complete, reducing unnecessary waiting time. The TIMEOUT is only about 2s longer than it actually takes the memory to encrypt. How would you check if it's complete? Also, is there a way to pre-en...
by craige
Tue Aug 13, 2024 8:52 am
Forum: General Discussion
Topic: Speeding up/automating programming of devices
Replies: 3
Views: 1092

Speeding up/automating programming of devices

Hello, We are currently in the process of scaling up the manufacturing of our product containing an ESP32-C6 module. The first step after assembly is to program the devices, which consists of the following steps executed in a .bat file; # Erase device esptool.py -p COM15 -b 921600 --before default_r...