You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using alloc on embedded devices with highly constrained memory often is difficult because estimation of the required memory is hard. It would be nice if this library would allow using the structures implemented in heapless instead of collections based on alloc.
Of course, that would require additional const generics to pass the allocated memory to the heapless parameters, but I think this is doable. Are there any plans for that to be implemented yet or should I look into it?
The text was updated successfully, but these errors were encountered:
I've been lucky enough to get away with alloc in the project I originally ported this library for, so no plans as of yet. I think it could be challenging, but haven't thought deeply about it. Feel free to give it a shot!
Using alloc on embedded devices with highly constrained memory often is difficult because estimation of the required memory is hard. It would be nice if this library would allow using the structures implemented in heapless instead of collections based on alloc.
Of course, that would require additional const generics to pass the allocated memory to the heapless parameters, but I think this is doable. Are there any plans for that to be implemented yet or should I look into it?
The text was updated successfully, but these errors were encountered: