Search found 3 matches

by divyat5
Mon Jul 11, 2022 10:49 pm
Forum: IDEs for ESP-IDF
Topic: ESP32 Reset After Flash
Replies: 5
Views: 4543

Re: ESP32 Reset After Flash

Thank you for your suggestion! I have done what you have said and it makes sense to me now: double*** malloc_d_array(int x, int y, int z); signed int*** malloc_i_array(int x, int y, int z); unsigned int*** malloc_ui_array(int x, int y, int z); void predict_model(double const * const x, double * pred...
by divyat5
Mon Jul 04, 2022 8:30 pm
Forum: IDEs for ESP-IDF
Topic: ESP32 Reset After Flash
Replies: 5
Views: 4543

Re: ESP32 Reset After Flash

Thank you for your reply and your help! What do you mean by dynamic allocation for those variables? If i use malloc(): 1) I will get the memory, during runtime, but I still need the initialized data values of those variables. 2) According to my understanding when I have to use the constant values, t...
by divyat5
Sun Jul 03, 2022 9:56 pm
Forum: IDEs for ESP-IDF
Topic: ESP32 Reset After Flash
Replies: 5
Views: 4543

ESP32 Reset After Flash

Hi, I am a newbie to ESP32. Can you please suggest a solution... Hardware: ESP32 KitC V4 ESP32-WROOM-32 IDE: Platform IO for VSCode Framework: ESP IDF Board: az-delivery-devkit-v4 For my project, i want to run inference of neural network model on my esp32. The inference code consists the following v...