Search found 15 matches

by slompf
Sat Jan 30, 2021 9:25 am
Forum: General Discussion
Topic: ESP-IDF development with Apple M1 chip?
Replies: 3
Views: 10179

Re: ESP-IDF development with Apple M1 chip?

Hi,

you may have a look here: https://github.com/espressif/esp-idf/issues/6113

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

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

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

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

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

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

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

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

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

Re: COMPONENT_REQUIRES not working in conditional config?

Ok, got that. Thank you very much.

Go to advanced search