Search found 20 matches

by aygh4266
Wed Oct 02, 2024 8:58 am
Forum: General Discussion
Topic: how to check firmware bin file of another microcontroller like STM32 on esp32 before writing it to SPIFFS ?
Replies: 1
Views: 103

how to check firmware bin file of another microcontroller like STM32 on esp32 before writing it to SPIFFS ?

Hello everyone, I managed to get the STM32 to update through esp32. I send the firmware bin file from a PC to esp32 using BT. The esp32 saves it in SPIFFS and forwards it to stm32. My scenario is, how can I first check the firwmare bin file for digital signature on the esp32 side before it is writte...
by aygh4266
Thu Sep 05, 2024 2:00 pm
Forum: General Discussion
Topic: Secure Boot V2 and Flash Encryption
Replies: 1
Views: 1127

Secure Boot V2 and Flash Encryption

Hello everbody. I intend to use Flash encryption in combination with Secure Boot V2. I would like to know if the FW Image must be signed before it will be encrypted and flashed. Basically I want to use the flash encryption in Release mode. For me something was not clear enough: So as far as I unders...
by aygh4266
Fri Aug 30, 2024 9:53 am
Forum: General Discussion
Topic: certified library in ESP-IDF
Replies: 1
Views: 1226

certified library in ESP-IDF

Hello everyone,

I would like to know if ESP-IDF offers certified libraries. The background is that the developer is always liable for the correctness.

thanks
by aygh4266
Fri Aug 23, 2024 11:37 am
Forum: General Discussion
Topic: USB-OTG and Secure Boot V2
Replies: 5
Views: 1491

Re: USB-OTG and Secure Boot V2

The JTAG bit will not work; you can try to connect to it but it won't see the CPU. The USB-to-serial bit will still function as a serial port. Ok thanks. But since the USB-OTG is disabled, I can communicate only with PC and send data over usb-serial. Am I able to write data from esp32s3 to a smartp...
by aygh4266
Thu Aug 22, 2024 8:31 am
Forum: General Discussion
Topic: USB-OTG and Secure Boot V2
Replies: 5
Views: 1491

Re: USB-OTG and Secure Boot V2

So my question: will the USB-OTG Stack be disable temporary and only during the validation of the signature or will it be permanet disabled? I mean, is any communication via USB-OTG after enabling SBV2 not possible anymore ? Or is it only not available only during the verification and validation pr...
by aygh4266
Thu Aug 22, 2024 7:48 am
Forum: General Discussion
Topic: USB-OTG and Secure Boot V2
Replies: 5
Views: 1491

USB-OTG and Secure Boot V2

Hello everyone, I have a general question regarding USB-OTG and Secure Boot V2 on esp32s3. So according to espressif documentation: enabling the Secure Boot disables the USB-OTG Stack in the ROM. So my question: will the USB-OTG Stack be disable temporary and only during the validation of the signat...
by aygh4266
Fri Aug 16, 2024 1:59 pm
Forum: General Discussion
Topic: invalid header after running secure boot
Replies: 3
Views: 1191

Re: invalid header after running secure boot

Solved the problem

the signed bootloader image must be flashed into the address 0x0. using the esptool.py write_flash --force 0x0 bootloader.bin fixed the problem
by aygh4266
Wed Aug 14, 2024 1:47 pm
Forum: General Discussion
Topic: invalid header after running secure boot
Replies: 3
Views: 1191

Re: invalid header after running secure boot

The binary file (app-template.bin) can be corrupted or incorrectly generated. So I have tried to generate the signing manually using espsecure.py and the binary file has been succssefully signed. The binary file have been built using idf.py build. I have verified the appended signature using espsec...
by aygh4266
Tue Aug 13, 2024 1:04 pm
Forum: General Discussion
Topic: invalid header after running secure boot
Replies: 3
Views: 1191

invalid header after running secure boot

Hello everyone, so I have enabled the Secure Boot sucessfully, generated the private signing key using OpenSSL. So after running the command , it stays in the bootloader. So I ran the command idf.py monitor, but it gives me an invalid header. First and second output [esptool.py -p COM4 -b 1152000 --...
by aygh4266
Wed Aug 07, 2024 1:36 pm
Forum: General Discussion
Topic: Secure Boot V2 FW Signig in production
Replies: 0
Views: 667

Secure Boot V2 FW Signig in production

Hello everyone, I have watched the webinar from espressif abot SBV2 and how to sign the firmware for prodution purposes, so the key should not be get leaked. They use KMS like Thistle. My question is how to deal with a thousand of devices should be signed with different keys. I have seen the idea wh...