Search found 12 matches

by andreko
Fri Jun 30, 2023 2:21 pm
Forum: ESP-IDF
Topic: Unable to flash image once Secure Boot / Flash Encryption has been enabled
Replies: 1
Views: 998

Re: Unable to flash image once Secure Boot / Flash Encryption has been enabled

One addition: found this command in the documentation of flash encryption in the chaper to re-flash updated partitions

Code: Select all

idf.py encrypted-app-flash monitor


But it creates the same problem
by andreko
Fri Jun 30, 2023 1:51 pm
Forum: ESP-IDF
Topic: Unable to flash image once Secure Boot / Flash Encryption has been enabled
Replies: 1
Views: 998

Unable to flash image once Secure Boot / Flash Encryption has been enabled

Hi I followed the documentation to enable Secure Boot and Flash Encryption for my ESP32-C2 platform. I choose development mode to be able to still download plain text images using the UART downloader. The flashing of the initial image succeeded. I see in the traces from the bootloader that secure bo...
by andreko
Fri Jun 30, 2023 1:35 pm
Forum: General Discussion
Topic: General Question about Flash Encryption
Replies: 2
Views: 1202

Re: General Question about Flash Encryption

Thanks for the reply. OK I understand that there are ways to open the plastic package, but usually there would be no access to the SiP flash using normal pins I guess. But anyway a good point to maybe enable flash encryption for this scenario as well.
by andreko
Wed Jun 28, 2023 1:11 pm
Forum: General Discussion
Topic: General Question about Flash Encryption
Replies: 2
Views: 1202

General Question about Flash Encryption

Hi, just a general question about the usage of flash encryption. The documentation says Flash encryption is intended for encrypting the contents of off-chip flash memory. What does that exactly mean? Does it only make sense for an ESP chip that has a separate flash chip attached via SPI? Or is it al...
by andreko
Tue Jun 27, 2023 10:08 am
Forum: Hardware
Topic: Can't upload to ESP32-C3 -- UART too fast?
Replies: 3
Views: 1327

Re: Can't upload to ESP32-C3 -- UART too fast?

Hi just my two cents on this. At least for the ES32-C2 I found out that the default hardware setting for the main XTAL frequency in sdkconfig was wrong for the dev board I was using. It was set to 40MHz instead of 26MHz, which is the correct setting.
Maybe this is the same for the ESP-C3 setup.
by andreko
Tue Jun 27, 2023 9:12 am
Forum: IDEs for ESP-IDF
Topic: Eclipse IDE and IDF Terminal
Replies: 4
Views: 6841

Re: Eclipse IDE and IDF Terminal

Hi and thanks for the reply, even though I am confident that I did exactly what you were suggesting it seems to work now. Maybe something was stuck on my computer and it was healed by a restart. Anyway thanks for your help. I will see if other problems pop up and maybe report that issue here. So far...
by andreko
Thu Jun 15, 2023 9:34 am
Forum: IDEs for ESP-IDF
Topic: Eclipse IDE and IDF Terminal
Replies: 4
Views: 6841

Re: Eclipse IDE and IDF Terminal

short update: I am running the IDE/IDF on WIndows
by andreko
Thu Jun 15, 2023 9:25 am
Forum: IDEs for ESP-IDF
Topic: Eclipse IDE and IDF Terminal
Replies: 4
Views: 6841

Eclipse IDE and IDF Terminal

Hi I am using the Eclipse IDE for Espressif and everything works fine so far. I use the predefined tools in the tool bar to build and download my application. So far so good. I now want to test the Secure Boot feature and according to the doc I need to execute some command line request using e.g. id...
by andreko
Mon May 15, 2023 2:45 pm
Forum: General Discussion
Topic: i2c_master_cmd_begin() and error code 263 (timeout)
Replies: 18
Views: 9397

Re: i2c_master_cmd_begin() and error code 263 (timeout)

@RobMeades thanks for sharing the analysis. Somehow it seems different from my case, I only see the issue with longer payloads on the bus. All short data communications seems to work as expected. I tried all recommendations from the github issue, but it did not solve the problem.
by andreko
Fri May 12, 2023 10:09 am
Forum: General Discussion
Topic: i2c_master_cmd_begin() and error code 263 (timeout)
Replies: 18
Views: 9397

Re: i2c_master_cmd_begin() and error code 263 (timeout)

here is the summary of my timeout trials from today. I found a section in the ESP8694(C2) reference manual: 21.4.7 Timeout Control The I2C master controller has three types of timeout control, namely timeout control for SCL_FSM, for SCL_MAIN_FSM, and for the SCL line. The first two are always enable...