Mass Production with ESP32

dowanKim
Posts: 3
Joined: Thu Mar 02, 2017 7:35 am

Mass Production with ESP32

Postby dowanKim » Sun Mar 12, 2017 8:35 am

I am preparing for mass production with esp32.
However, it is burdensome to increase the amount of data to flash by serial communication.
So I want to do the following.
First, I create a very small and simple application without RTOS,
which only has wifi functionality and the ota functionality associated with it.
After I flash this code in the factory area via a serial,
this code will run and download the original binary and install it in the ota-0 area.

Please try it once.
How small can you get?

Thank you!

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

Re: Mass Production with ESP32

Postby ESP_Sprite » Tue Mar 14, 2017 4:31 am

As an alternative, you can usually order flash chips pre-programmed as well. That may be the quickest option if you want rapid programming ;)

bhavenm
Posts: 4
Joined: Sun Oct 08, 2017 5:03 pm

Re: Mass Production with ESP32

Postby bhavenm » Sat Nov 18, 2017 9:12 pm

how can i order pre-programmed chips. How much do they cost? I have a project ready to go into production.

User avatar
Gfast2
Posts: 182
Joined: Fri Aug 11, 2017 1:52 am

Re: Mass Production with ESP32

Postby Gfast2 » Sun Nov 19, 2017 2:55 am

Hi bhavenm & ESP_Sprite,

I'd interested in this topic too.
My questions are:

1. How to package all stuff for SPI including the partitions as a ".bin"
2. How to do SPI Flash serial programming without ESP-IDF?

Cheers

Gfast

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

Re: Mass Production with ESP32

Postby ESP_Sprite » Sun Nov 19, 2017 10:20 am

On 1: You'd have to find a way to create a blank file, then put all the .bins in there in their expected locations... on an Unix environment, you could probably kludge something with dd and some well-chosen command line arguments. For an easier way, just flash an ESP32 module as you would normally do, then read out the flash again and use that as your template. Or for most speed, don't bother and find a way to flash all individual .bin files to the flash in their required place; that way you only flash as much as needed and not more.

You can program a SPI flash chip in a multitude of ways: grabbing a flash programmer and using that would be the most obvious.

User avatar
Gfast2
Posts: 182
Joined: Fri Aug 11, 2017 1:52 am

Re: Mass Production with ESP32

Postby Gfast2 » Sun Nov 19, 2017 10:41 am

ESP_Sprite wrote:On 1: You'd have to find a way to create a blank file, then put all the .bins in there in their expected locations... on an Unix environment, you could probably kludge something with dd and some well-chosen command line arguments. For an easier way, just flash an ESP32 module as you would normally do, then read out the flash again and use that as your template. Or for most speed, don't bother and find a way to flash all individual .bin files to the flash in their required place; that way you only flash as much as needed and not more.

You can program a SPI flash chip in a multitude of ways: grabbing a flash programmer and using that would be the most obvious.
Hi ESP_Sprite,

Thanks for sharing these suggestion.
I think its the time for me to investing time on two questions with google:

1. How to read flash chip through spi interface.
2. How prevent others to copy my flash in the way as in the question 1 mentioned. :lol:

Cheers

Gfast2

newsettler_AI
Posts: 121
Joined: Wed Apr 05, 2017 12:49 pm

Re: Mass Production with ESP32

Postby newsettler_AI » Sun Nov 19, 2017 1:02 pm

Gfast2 wrote: 1. How to read flash chip through spi interface.
2. How prevent others to copy my flash in the way as in the question 1 mentioned. :lol:
Gfast2

1. Use mingw from framework:

Code: Select all

python E:/ESP32/esp-idf/components/esptool_py/esptool/esptool.py --port COM5 --baud 230400 read_flash 0 0x400000 original_content.bin
This how you can read flash (tested on windows, on linux you need adjust first part of command)

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

Re: Mass Production with ESP32

Postby ESP_Sprite » Sun Nov 19, 2017 1:50 pm

Also, wrt how to stop others from reading your flash: read up on flash encryption.

User avatar
Gfast2
Posts: 182
Joined: Fri Aug 11, 2017 1:52 am

Re: Mass Production with ESP32

Postby Gfast2 » Sun Nov 19, 2017 2:48 pm

Hi newsettler_AI & ESP_Sprite,

Thanks for your answers. You guys are awesome. You are my Preachers! ;)

I will check out you advices very soon and tell the problems when there is any.

Cheers

Gfast2

Who is online

Users browsing this forum: No registered users and 114 guests