Search found 24 matches

by aygh4266
Fri Nov 15, 2024 12:40 pm
Forum: General Discussion
Topic: suspending and resuming NimBLE Task
Replies: 1
Views: 322

suspending and resuming NimBLE Task

Hello everyone, I want to activate bluetooth only for a while and when it is only necessary. Should it be better to suspend and resume the NimBLE freertos task based on : void vAFunction( void ) { TaskHandle_t xHandle; // Create a task, storing the handle. xTaskCreate( vTaskCode, "NAME", STACK_SIZE,...
by aygh4266
Tue Oct 29, 2024 10:56 am
Forum: General Discussion
Topic: CMake in esp-idf
Replies: 3
Views: 746

Re: CMake in esp-idf

The best way https://docs.espressif.com/projects/esp-idf/en/stable/esp32/api-guides/build-system.html I have an issue with the subdirectory. I need to structure the project into subdirectories, which are not components. In each subdirectory there is components I have registered successfully. The pr...
by aygh4266
Tue Oct 29, 2024 10:29 am
Forum: General Discussion
Topic: CMake in esp-idf
Replies: 3
Views: 746

Re: CMake in esp-idf

The best way https://docs.espressif.com/projects/esp-idf/en/stable/esp32/api-guides/build-system.html I have an issue with the subdirectory. I need to structure the project into subdirectories, which are not components. In each subdirectory there is components I have registered successfully. The pr...
by aygh4266
Mon Oct 28, 2024 10:12 am
Forum: General Discussion
Topic: CMake in esp-idf
Replies: 3
Views: 746

CMake in esp-idf

hello everyone, I am currently working on structuring my project using CMake into multiple layers, such as “Drivers” and “Abstraction.” Each layer must have its own subdirectory and associated CMakeLists.txt file. However, I am facing some challenges in properly configuring CMake to recognize and bu...
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: 2
Views: 1149

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: 1441

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: 1373

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: 1708

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: 1708

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: 1708

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...