| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-01-03 | wip | Dan Halbert | |
| 2019-12-12 | merge from master | Dan Halbert | |
| 2019-12-12 | Fix flash write error handling; clean up safe mode message printing | Dan Halbert | |
| 2019-12-05 | wip | Dan Halbert | |
| 2019-10-20 | Parameterize linker script | Dan Halbert | |
| 2019-04-16 | Fix up single-byte access to nvm.ByteArray | Nick Moore | |
| 2019-04-16 | Make some space for NVM adafruit/circuitpython#1042 | Nick Moore | |
| 2019-04-16 | switch nvm.ByteArray to use new nrf_nvm_safe_flash_page_write | Nick Moore | |
| adafruit/circuitpython#1610 | |||
| 2019-04-16 | Working flash pages for nvm.ByteArray adafruit/circuitpython#1042 | Nick Moore | |
| import microcontroller def dump(n = microcontroller.nvm): for i in range(0,len(n)): print ("%02X " % n[i], end="") if i % 16 == 15: print('') microcontroller.nvm[0:4096] = bytes([1,2,3,4,5,6,7,8]) * 512 microcontroller.nvm[4096:8192] = bytes([16,17,18,19]) * 1024 microcontroller.nvm[4090:4101] = b'thisisatest' microcontroller.nvm[100:105] = b'hello' microcontroller.nvm[8000:8007] = b'goodbye' dump() | |||
| 2019-04-16 | nvm.ByteArray reads & writes but no sensible erase yet ↵ | Nick Moore | |
| adafruit/circuitpython#1042 | |||
| 2019-04-15 | Revert "nrf nvm: touchups to nickzoic PR #1768" | Scott Shawcroft | |
| 2019-04-10 | fix subscripting | Dan Halbert | |
| 2019-04-09 | Make some space for NVM adafruit/circuitpython#1042 | Nick Moore | |
| 2019-04-09 | switch nvm.ByteArray to use new nrf_nvm_safe_flash_page_write | Nick Moore | |
| adafruit/circuitpython#1610 | |||
| 2019-04-09 | Working flash pages for nvm.ByteArray adafruit/circuitpython#1042 | Nick Moore | |
| import microcontroller def dump(n = microcontroller.nvm): for i in range(0,len(n)): print ("%02X " % n[i], end="") if i % 16 == 15: print('') microcontroller.nvm[0:4096] = bytes([1,2,3,4,5,6,7,8]) * 512 microcontroller.nvm[4096:8192] = bytes([16,17,18,19]) * 1024 microcontroller.nvm[4090:4101] = b'thisisatest' microcontroller.nvm[100:105] = b'hello' microcontroller.nvm[8000:8007] = b'goodbye' dump() | |||
| 2019-04-09 | nvm.ByteArray reads & writes but no sensible erase yet ↵ | Nick Moore | |
| adafruit/circuitpython#1042 | |||
