Search found 3 matches
- 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: 739
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 ...
- Sun Apr 21, 2024 6:36 pm
- Forum: ESP-IDF
- Topic: IDF example scan does not show ap's returned
- Replies: 3
- Views: 823
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...
- Sun Apr 21, 2024 6:31 pm
- Forum: ESP-IDF
- Topic: ESP32 EMAC receive not working
- Replies: 9
- Views: 2439
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...