Open jounathaen opened 7 months ago
As mentioned in https://github.com/bernii/embedded-graphics-framebuf/pull/23, we basically implement ReadBuffer for all &mut [C;N] in https://github.com/bernii/embedded-graphics-framebuf/blob/4205fb28cf413c04a5d711d345482a409f2c606c/src/backends.rs#L92
ReadBuffer
&mut [C;N]
This might be problematic because the slice could not be suitable for DMA access. Maybe it is already fine as is, but as I haven't fully thought this through, I'll leave this as an issue for now.
As mentioned in https://github.com/bernii/embedded-graphics-framebuf/pull/23, we basically implement
ReadBuffer
for all&mut [C;N]
in https://github.com/bernii/embedded-graphics-framebuf/blob/4205fb28cf413c04a5d711d345482a409f2c606c/src/backends.rs#L92This might be problematic because the slice could not be suitable for DMA access. Maybe it is already fine as is, but as I haven't fully thought this through, I'll leave this as an issue for now.