2024-06-26 10:14 AM
Good evening everyone; I was going to ask about something the size of it. If anyone has any information, I'd be happy. STMCube ide is also the LWip library tool. For MQTT connection via Ethernet. After publishing and subscribing for a certain period of time (30-40 minutes), "Out of memory error." (-1) error occurs and publishing and subscribing operations stop. How can I do that.
Solved! Go to Solution.
2024-06-26 10:19 AM
You're going to need to give a lot more detail!
@ramazan_kavak wrote:"Out of memory error." (-1) error occurs
Where, exactly, does it occur?
@ramazan_kavak wrote:After publishing and subscribing for a certain period of time (30-40 minutes)
Sounds like you have a memory leak - ie, you keep allocating memory, but never release it.
You need to review your code (maybe also the LwIP documentation, and documentation for your MQTT library) to see where memory is being allocated, and check that it always gets released (de-allocated).
2024-06-26 10:19 AM
You're going to need to give a lot more detail!
@ramazan_kavak wrote:"Out of memory error." (-1) error occurs
Where, exactly, does it occur?
@ramazan_kavak wrote:After publishing and subscribing for a certain period of time (30-40 minutes)
Sounds like you have a memory leak - ie, you keep allocating memory, but never release it.
You need to review your code (maybe also the LwIP documentation, and documentation for your MQTT library) to see where memory is being allocated, and check that it always gets released (de-allocated).
2024-11-20 12:01 PM
Hello, the problem in question still persists, most likely there is a memory leak as you said. So how do I free the allocated areas in memory? By clearing the buffers with memset? Can you examine the function blocks I publish and subscribe to?
2024-11-21 01:04 AM
@ramazan_kavak wrote:the problem in question still persists?
So why have you marked it as solved?
You can un-mark the solution:
@ramazan_kavak wrote:most likely there is a memory leak as you said.
First, you need to confirm that for sure
@ramazan_kavak wrote:So how do I free the allocated areas in memory?
You need to identify where, exactly, that memory is being allocated, and why it is not getting freed.