This task might be due to my ignorance more than anything.
When you design for no_std, that means that everything is on the stack, which can cause you to blow your stack limit. Research
how an application that itself is not no_std can put our large structs (like key objects) on the heap. Is this what
Box is for? It would be nice to throw an example of that into the crate docs somewhere.
This task might be due to my ignorance more than anything.
When you design for no_std, that means that everything is on the stack, which can cause you to blow your stack limit. Research
how an application that itself is not no_std can put our large structs (like key objects) on the heap. Is this what
Box is for? It would be nice to throw an example of that into the crate docs somewhere.