Search found 2230 matches

by chegewara
Sat Jan 11, 2020 5:20 pm
Forum: IDEs for ESP-IDF
Topic: Be Warned, New VS Code Ext. along side other ESP-IDF versions
Replies: 11
Views: 16323

Re: Be Warned, New VS Code Ext. along side other ESP-IDF versions

Hi, i am using only VS code and i did 1 quick run with esp plugin, but i have few thoughts. 1) its not waste of money, its a more or less expensive lesson 2) to me menuconfig works from esp-idf plugin, it looks differently, like list of configs, but works 3) i think the problem you had was because d...
by chegewara
Fri Jan 10, 2020 4:10 pm
Forum: ESP32 Arduino
Topic: ESP32 Connect with ANCS?
Replies: 4
Views: 5068

Re: ESP32 Connect with ANCS?

This is a little bit old code, wont work with current esp-idf or arduino, but its good start to study case:
https://github.com/S-March/esp32_ANCS
by chegewara
Fri Jan 10, 2020 4:01 pm
Forum: General Discussion
Topic: "Cache disabled but cached memory region accessed" error for large stack size
Replies: 6
Views: 5665

Re: "Cache disabled but cached memory region accessed" error for large stack size

@ESP_Sprite, i just wanted to correct myself, because my first answer was incorrect. It is possible to to create task with stack in PSRAM, which i just learned (only theory). So, his/her code should works if settings in menuconfig are enabled. What i would do is to allocate memory for stack with hea...
by chegewara
Thu Jan 09, 2020 3:06 pm
Forum: ESP-IDF
Topic: OTA with Classic Bluetooth
Replies: 4
Views: 5548

Re: OTA with Classic Bluetooth

Hi all, I have been trying to implement OTA via Classic Bluetooth. Somehow, I got the data bytes to be delivered to ESP via Android App. The code of OTA is attached below: OTA.c Now I am getting checksum issue as below: I (151164) OTA Function : Total Write binary data length : 719696 I (151164) es...
by chegewara
Thu Jan 09, 2020 2:16 pm
Forum: General Discussion
Topic: "Cache disabled but cached memory region accessed" error for large stack size
Replies: 6
Views: 5665

Re: "Cache disabled but cached memory region accessed" error for large stack size

After studying problem i found this: 1) https://www.freertos.org/xTaskCreateStatic.html Create a new task and add it to the list of tasks that are ready to run. configSUPPORT_STATIC_ALLOCATION must be set to 1 in FreeRTOSConfig.h for this RTOS API function to be available. which is not enabled in ar...
by chegewara
Wed Jan 08, 2020 11:24 pm
Forum: ESP-IDF
Topic: SOLVED: App version dirty while git is clean
Replies: 3
Views: 4692

Re: App version dirty while git is clean

I dont know if this is the case, but with AmazonFreeRTOS as component i am getting amazon-freertos dirty only because few files are generated during build process, ie: vendors/espressif/esp-idf/tools/kconfig_new/gen_kconfig_doc.pyc vendors/espressif/esp-idf/tools/kconfig_new/kconfiglib.pyc vendors/e...
by chegewara
Wed Jan 08, 2020 11:03 pm
Forum: General Discussion
Topic: SHA256 encryption example?
Replies: 4
Views: 7608

Re: SHA256 encryption example?

I would like to see a standard example from the source, not someone else who may or may not know all the tricks one has to do to make the library work correctly. If you want standard examples from source then you are looking in wrong place. mbedtls is 3rd party library, so you should look at mbedtl...
by chegewara
Sat Jan 04, 2020 11:12 pm
Forum: ESP-IDF
Topic: The syntax for the instruction ULP "jumpr eq" is not correct.
Replies: 2
Views: 2789

Re: The syntax for the instruction ULP "jumpr eq" is not correct.

https://docs.espressif.com/projects/esp-idf/en/stable/api-guides/ulp_instruction_set.html#jumpr-jump-to-a-relative-offset-condition-based-on-r0 VS https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/ulp_instruction_set.html#jumpr-jump-to-a-relative-offset-condition-based-on-r0 Its eithe...
by chegewara
Tue Dec 31, 2019 6:33 pm
Forum: General Discussion
Topic: BLE Security Passcode
Replies: 14
Views: 37579

Re: BLE Security Passcode

bobolink wrote:
Tue Dec 31, 2019 4:33 pm
Arduino passcode doesn’t work.
Need to use IDF examples.
Why do you think it does not work?
by chegewara
Tue Dec 31, 2019 3:55 am
Forum: IDEs for ESP-IDF
Topic: ESP32 Unresolved Inclusion on Hello World
Replies: 13
Views: 24021

Re: ESP32 Unresolved Inclusion on Hello World

Is it possible that the editor is somehow not resolving those references even though the compiler is? Yes. When ive been starting to work with esp32 ive been trying to use eclipse, now i prefer VS code because its much easier to work with. My reference to start with eclipse was this example, which ...