Search found 15 matches

by slompf
Wed Jan 06, 2021 4:35 pm
Forum: ESP-IDF
Topic: freertos
Replies: 6
Views: 7057

Re: freertos

That helped. Thank you very much. :D
by slompf
Wed Jan 06, 2021 2:18 pm
Forum: ESP-IDF
Topic: freertos
Replies: 6
Views: 7057

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...
by slompf
Tue Jan 05, 2021 10:02 am
Forum: ESP-IDF
Topic: freertos
Replies: 6
Views: 7057

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.
by slompf
Tue Jan 05, 2021 9:42 am
Forum: ESP-IDF
Topic: freertos
Replies: 6
Views: 7057

Re: freertos

I'm having the exact same problem. Any progress on this?

Regards
by slompf
Mon Dec 21, 2020 1:31 pm
Forum: ESP-IDF
Topic: ESP HTTP decryption
Replies: 2
Views: 2467

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.
by slompf
Mon Dec 21, 2020 10:23 am
Forum: ESP-IDF
Topic: ESP HTTP decryption
Replies: 2
Views: 2467

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 ...
by slompf
Sun Aug 09, 2020 10:11 am
Forum: ESP-IDF
Topic: NimBLE Gap device name limits
Replies: 4
Views: 5795

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 < ...
by slompf
Sat Mar 14, 2020 10:36 am
Forum: ESP-IDF
Topic: Unit testing custom component
Replies: 0
Views: 3008

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...
by slompf
Mon Jan 06, 2020 7:42 am
Forum: ESP-IDF
Topic: COMPONENT_REQUIRES not working in conditional config?
Replies: 2
Views: 3787

Re: COMPONENT_REQUIRES not working in conditional config?

Ok, got that. Thank you very much.