Closed MathiasKoch closed 4 years ago
As part of the strides towards an alloc-free implementation, the first first step would be to remove the VecDeque, in favor of something like heapless::LinearMap. Fixed
VecDeque
heapless::LinearMap
An issue on the dependant mqttrs has been opened to push for alloc-free mqtt encoders and decoders. https://github.com/00imvj00/mqttrs/issues/27 Fixed
String
Vec
Once the above mqttrs has been fixed, the String and Vec from alloc can be replaced with equivalent heapless versions. https://github.com/00imvj00/mqttrs/issues/29
alloc
VecDeque elimination
As part of the strides towards an alloc-free implementation, the first first step would be to remove the
VecDeque
, in favor of something likeheapless::LinearMap
. FixedAlloc-free mqttrs
An issue on the dependant mqttrs has been opened to push for alloc-free mqtt encoders and decoders. https://github.com/00imvj00/mqttrs/issues/27 Fixed
Remove
String
andVec
Once the above mqttrs has been fixed, the
String
andVec
fromalloc
can be replaced with equivalent heapless versions. https://github.com/00imvj00/mqttrs/issues/29