How to program ESP32 for mass production

leotordo
Posts: 10
Joined: Thu Feb 02, 2023 1:31 pm

How to program ESP32 for mass production

Postby leotordo » Thu Oct 05, 2023 7:27 am

Hello,
I designed a board with ESP32C3 and wrote FW with ESP-IDF. On my pc I've installed all required prerequisites: Java, Git, Python etc. and IDF. I download bin file by UART and a little board with two switches for reset and GPIO9

Now, I've to send informations, binary and hardware to our assembly office for the mass production.

Have I to install all software I used to develop the project or is there a single program I can you only to download the binary?

Thanks
Stefano

username
Posts: 532
Joined: Thu May 03, 2018 1:18 pm

Re: How to program ESP32 for mass production

Postby username » Fri Oct 06, 2023 2:57 am


bidrohini
Posts: 202
Joined: Thu Oct 27, 2022 12:55 pm

Re: How to program ESP32 for mass production

Postby bidrohini » Sun Oct 08, 2023 1:13 pm

Something like this may help too.
https://www.youtube.com/watch?v=hrNsdTKUbfY

leotordo
Posts: 10
Joined: Thu Feb 02, 2023 1:31 pm

Re: How to program ESP32 for mass production

Postby leotordo » Sat Nov 04, 2023 9:14 am

thanks everybody :-)

DrMickeyLauer
Posts: 168
Joined: Sun May 22, 2022 2:42 pm

Re: How to program ESP32 for mass production

Postby DrMickeyLauer » Mon Nov 06, 2023 6:11 pm

I'm currently pondering about the same thing. How are you guys handling testing and factory programming? For my project, roughly 50% of the hardware is testable without special fixtures. Ideally I would love the factory doing the tests before they send the units over to us. Are there any best practices with regards to testing and factory programming? Would love to know your experiences, in particular of those folks with peripheral devices (CAN, KLINE, ENET, etc.) on the boards.

ESP_Sprite
Posts: 9727
Joined: Thu Nov 26, 2015 4:08 am

Re: How to program ESP32 for mass production

Postby ESP_Sprite » Tue Nov 07, 2023 4:55 am

Fwiw, I once designed a little production run; it was small enough to have testing, programming and assembly done manually. What I did was design a PCB that goes on top of a Raspberry Pi, that had a little OLED display on it as well as some ADCs and other measuring circuits. That was connected to a bed-of-nails tester that interfaced with a bunch of important points: power supplies, the output for the speaker etc as well as the programming pins of the ESP32. The firmware in the Raspberry Pi used esptool.py to flash some factory testing firmware to the ESP, then communicated with that using a custom script to run the ESP32 through the testing steps, measuring external signals using the ADCs on the custom PCB. If there was an error, it'd show up on the OLED so the tester could chuck it into the 'broken' bin; if everything checked out, the Raspberry Pi would program the final firmware and show the unit was ready. It took some designing and programming, but from what I can tell it works well. All the person testing it needs to know is to chuck a board into the bed-of-nails tester, wait until the LCD indicates the test is done, and then dependent on the result chuck it in the 'OK' bin or to mark it with the error and throw it into the 'broken' pile.

DrMickeyLauer
Posts: 168
Joined: Sun May 22, 2022 2:42 pm

Re: How to program ESP32 for mass production

Postby DrMickeyLauer » Tue Nov 07, 2023 9:31 am

I like it. That's probably the most comprehensive approach, albeit the most complex one. Any other success stories?

DrMickeyLauer
Posts: 168
Joined: Sun May 22, 2022 2:42 pm

Re: How to program ESP32 for mass production

Postby DrMickeyLauer » Tue Feb 27, 2024 1:16 pm

By now we're thinking about a special fixture that can hold 5 boards secured and attached (via needle pins) and connected via USB to a Linux PC (probably a Raspi, but that's not decided yet). Now each of the boards is also connected (through their OBD2 connector) to another board (same, but "known good" and running a special test master software). The test client software is a part of the original production firmware and starts up when there is nothing in NVS. The test results are display via the 4 builtin LEDs on the device under test.

Now I need to think of a way to script the `esptool` in a way that it a) probes whether a new device has been attached to /dev/ttyUSBx, and if so, flashes it with a test software. Since the device nodes will be permanently there (we're talking UART, not JTAG), we need to probe every second or so. Since there is still no proper python API, I'm afraid I need to parse the esptool output, right?

Does that sound feasible so far?

ESP_Sprite
Posts: 9727
Joined: Thu Nov 26, 2015 4:08 am

Re: How to program ESP32 for mass production

Postby ESP_Sprite » Wed Feb 28, 2024 1:39 am

ESPTool has somewhat of an API, albeit a very light one, so I think you indeed need to be parsing the output of the tool.

Who is online

Users browsing this forum: Bing [Bot] and 101 guests