circuitpython/ports
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
2019-12-10 14:03:06 -06:00
..
atmel-samd samd: neopixel: Fix neopixels after #2297 2019-12-07 19:19:45 -06:00
cxd56 Merge remote-tracking branch 'origin/master' into tick-refactor 2019-11-29 11:27:09 -06:00
nrf nRF: disk_read must be 4-byte aligned 2019-12-10 14:03:06 -06:00
stm32f4 Merge pull request #2315 from hierophect/stm32-pyb-nano 2019-12-10 11:25:07 -08:00
unix protocols: Allow them to be (optionally) type-safe 2019-12-04 09:29:57 -06:00