Memory leak when using RAW, Filter and I2S.

Ismael
Posts: 20
Joined: Thu Mar 05, 2020 7:35 am

Memory leak when using RAW, Filter and I2S.

Postby Ismael » Thu Mar 05, 2020 8:46 am

Good morning.

Starting from the VoIP example, I tried to communicate 2 devices using UDP using 2 ESP32 LyraT v4.3 boards.
All the scenario works well (despite of some noise in the channel, but this could be another topic that I would like to analyze first).
Due to the limited memory of RAM that the module has and a lot of functionalities that this product has to use (MQTT + TLS + BLE + MP3 + RAW stream), I was force to use all the init and deinit functions available. To focus in the minimal resources that the module has to use:
- MQTT (with TLS and WIFI) or BLE
- MP3 or RAW stream (note that I2S could be always enabled)
- 1 TCP connection (when RAW stream is used, a UDP socket is required)

All the time, a timer is monitoring the free heap memory with "heap_caps_get_free_size(MALLOC_CAP_8BIT)" function.

When the program begins, the total HEAP memory is 228KB.
Then, I initialize the common audio components (I2S). 203KB remaining.
After WIFI get an IP, only 166KB of memory is accesible.
When MQTT with TLS are totally connected with the broker, only 110KB of can be used.

Here is where the problem appears.
1.- After a single play of a MP3 track, a ~1KB of memory is lost.
2.- After a session of RAW stream, a ~25KB of memory is lost.

So, after some usage of the application a restart is needed because there is enough memory to be allocated with a malloc call.

All the init and deinit functions are executed and the sockets (UDP in this case) is properly finished. You can find attached the library that I've being used to init and deinit all the components.

Is there any problem with the memory allocation?
Is there any possibility to remove all the malloc calls?
How can I contain the memory usage of all this issue?
What do you recommend me?


Thanks so much.
Attachments
audio_voip.c
Implementation of RAW stream
(6.19 KiB) Downloaded 503 times
audio.c
I2S initialization
(2.11 KiB) Downloaded 501 times

jason.mao
Posts: 96
Joined: Mon Nov 19, 2018 2:05 am

Re: Memory leak when using RAW, Filter and I2S.

Postby jason.mao » Tue Feb 23, 2021 3:38 am

Hi Ismael,

How about this issue?

Who is online

Users browsing this forum: No registered users and 28 guests