Search found 3 matches

by douglasbaird
Wed Apr 24, 2024 7:02 am
Forum: ESP-IDF
Topic: [solved] IDF5.1.2/ADF2.6 - not-required components keep appearing in project after use of menuconfig (nghttp,jsmn)
Replies: 2
Views: 548

Re: IDF5.1.2/ADF2.6 - not-required components keep appearing in project after use of menuconfig (nghttp,jsmn)

Hello, 1. Yes, it is expected behavior with the updated versions of IDF and ADF. These components are included to support the menuconfig feature and provide options for configuring the sdkconfig file. 2. Yes, you can safely ignore these components and add them to your gitignore list if they are not ...
by douglasbaird
Sun Apr 21, 2024 6:36 pm
Forum: ESP-IDF
Topic: IDF example scan does not show ap's returned
Replies: 3
Views: 588

Re: IDF example scan does not show ap's returned

Hi, I think the ap_info buffer provided to store the scan results might not have enough space to accommodate all the APs found during the scan. By default, the example code you mentioned uses an ap_info buffer that can hold a maximum of 10 APs. If there are more than 10 APs in the scan results, only...
by douglasbaird
Sun Apr 21, 2024 6:31 pm
Forum: ESP-IDF
Topic: ESP32 EMAC receive not working
Replies: 9
Views: 1844

Re: ESP32 EMAC receive not working

Hello, I think the issue might be related to the buffer size you're providing. In your code, you're allocating a buffer with a fixed size of 1522 bytes using malloc(len). However, the len parameter should be initialized with the maximum buffer size you allocate and pass it to the mac.receive() funct...