Search found 4 matches
- Fri Jan 19, 2018 7:50 am
- Forum: General Discussion
- Topic: How to do tcpip_adapter_deinit() ?
- Replies: 1
- Views: 3282
How to do tcpip_adapter_deinit() ?
Hi I am working on wifi, to connect to wifi we have tcpip_adapter_init() to initialize adapter but counter part is not available, can anyone tell me how to de-allocate the memory that is assigned during tcpip_adapter_init() . Because of deinit() is not available i am facing 8kb memory leak. please r...
- Fri Jan 19, 2018 7:43 am
- Forum: General Discussion
- Topic: How to increase number of records in heap_tracing buffer heap_trace_record_t?
- Replies: 2
- Views: 4296
Re: How to increase number of records in heap_tracing buffer heap_trace_record_t?
Thank you for your reply, i will try this solution.
Regards
Nayana
Regards
Nayana
- Thu Jan 18, 2018 11:12 am
- Forum: General Discussion
- Topic: How to increase number of records in heap_tracing buffer heap_trace_record_t?
- Replies: 2
- Views: 4296
How to increase number of records in heap_tracing buffer heap_trace_record_t?
Hi I am working on memory leak analysis in esp32. I am facing problem with heap_trace_record_t type buffer, this will record the leaks and prints when heap_tracing is enabled in menuconfig. But this buffer is overflowing, can anyone tell me how to increase the buffer size to record more leaks. I tri...
- Thu Jan 18, 2018 9:07 am
- Forum: Sample Code
- Topic: esp_event_loop_deinit for deallocating queue and task?
- Replies: 1
- Views: 5663
esp_event_loop_deinit for deallocating queue and task?
Hi, I am working on wifi. In present library the esp_event_loop_init() is only preset but esp_event_loop_deinit() is not there to delete the task and queue that is created in esp_event_loop_init() . Can anyone tell me how to implement the deinit() function. Because of that i am facing memory leak in...