Hi,
you may have a look here: https://github.com/espressif/esp-idf/issues/6113
Regards
Search found 15 matches
- Sat Jan 30, 2021 9:25 am
- Forum: General Discussion
- Topic: ESP-IDF development with Apple M1 chip?
- Replies: 3
- Views: 9136
Re: freertos
That helped. Thank you very much.
Re: freertos
It looks like this: { "configurations": [ { "name": "ESP", "cStandard": "c11", "cppStandard": "c++17", "includePath": [ "${workspaceFolder}/**", "${config:idf.espIdfPath}/components/**" ], "browse": { "path": [ "${config:idf.espIdfPath}/components", "${config:idf.espIdfPathWin}/components", "${works...
Re: freertos
Just found a suggested solution in this forum: viewtopic.php?f=40&t=17818&p=66817&hilit=reent#p66817
But it does not work for me.
But it does not work for me.
Re: freertos
I'm having the exact same problem. Any progress on this?
Regards
Regards
- Mon Dec 21, 2020 1:31 pm
- Forum: ESP-IDF
- Topic: ESP HTTP decryption
- Replies: 2
- Views: 2872
Re: ESP HTTP decryption
I'm now receiving the whole message, decrypting and caching it. Then I can provide it block by block to the server.
- Mon Dec 21, 2020 10:23 am
- Forum: ESP-IDF
- Topic: ESP HTTP decryption
- Replies: 2
- Views: 2872
ESP HTTP decryption
Hi, I'm trying to replace my own HTTP server in a Apple Homekit implementation with the one of esp idf. This is partly working, but now a problem arose: As the message sent by the client are encrypted I have overwritten the recv function with httpd_sess_set_recv_override to decrypt them. This works ...
- Sun Aug 09, 2020 10:11 am
- Forum: ESP-IDF
- Topic: NimBLE Gap device name limits
- Replies: 4
- Views: 6909
Re: NimBLE Gap device name limits
Hi, I just did that for my project. The length of the name you can send with regular advertising depends on your advertising data. int err = 0; const char* name = "myAwesomName"; struct ble_hs_adv_fields fields; memset(&fields, 0, sizeof fields); size_t name_length = strlen(name); if (name_length < ...
- Sat Mar 14, 2020 10:36 am
- Forum: ESP-IDF
- Topic: Unit testing custom component
- Replies: 0
- Views: 3266
Unit testing custom component
Hi, I have a project with a custom component: ~/myproject/components/mycomponent/ ->src ->test I have the unit test app running like written here: https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/unit-tests.html Now how do I run the tests of my custom component? How can the unit test...
- Mon Jan 06, 2020 7:42 am
- Forum: ESP-IDF
- Topic: COMPONENT_REQUIRES not working in conditional config?
- Replies: 2
- Views: 4331
Re: COMPONENT_REQUIRES not working in conditional config?
Ok, got that. Thank you very much.