mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-17 10:33:49 +01:00
Previously `tests/pkg_littlefs2` crashed on the `samr21-xpro`. This now aligns the buffers in `littlefs2_desc_t` to the alignment requirement of `uint32_t`. Specifically the issue causing the crash at hand was that `struct lfs_free::buffer` is of type `uint32_t *`, so access are expected to be aligned to `uint32_t`. After this commit, this assumption is fulfilled.