You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Jeff Epler a484a93b29 nRF: disk_read must be 4-byte aligned
.. a requirement that oofatfs needs to be taught to respect.

This problem can be demonstrated with the following snippet, except
that the related file ("test.bin") must also be contiguous on the
filesystem.  You can ensure this by reformatting your device's filesystem
before testing, then copying any single file bigger than 4kB to test.bin.

    f = open("test.bin", "rb")
    f.seek(2048)
    b = bytearray(2048)
    v = memoryview(b)
    f.readinto(v[909:])

Closes: #2332
3 years ago
..
atmel-samd samd: neopixel: Fix neopixels after #2297 3 years ago
cxd56 Merge remote-tracking branch 'origin/master' into tick-refactor 3 years ago
nrf nRF: disk_read must be 4-byte aligned 3 years ago
stm32f4 Merge pull request #2315 from hierophect/stm32-pyb-nano 3 years ago
unix protocols: Allow them to be (optionally) type-safe 3 years ago