Hi
We are using Murata Type ZY device with DA14580
The base software is the DSPS device software.
While making many BLE connect / disconnects by the DSPS App, the device software enters reset due RESET_MEME_ALLOC_FAIL.
I would appreciate to get solution for this problem
Thanks
Ran
Device:
Hi ran_shahar,
If you get a reset due to RESET_MEM_ALLOC_FAIL, that means that you have memory leak, somewhere in your code you are allocating memory and its never freed, for example, perhaps, you are using the arch_printf() funtion in order to print a lot of data through UART2, every arch_printf allocates a message in order to print it when the XTA16 is active, so if you are allocating two much messages without serving then (the is no rwip_schedule() invokation), eventually you wil run out of memory.
Thanks MT_dialog