Dan Halbert
|
864910559b
|
fix subscripting
|
2019-04-10 21:41:55 -04:00 |
|
Nick Moore
|
18908c21f7
|
Fixups for adafruit/circuitpython#1042
|
2019-04-09 12:53:11 +10:00 |
|
Nick Moore
|
fdaff00c78
|
Make some space for NVM adafruit/circuitpython#1042
|
2019-04-09 10:56:53 +10:00 |
|
Nick Moore
|
bc92441803
|
switch nvm.ByteArray to use new nrf_nvm_safe_flash_page_write
adafruit/circuitpython#1610
|
2019-04-09 10:55:39 +10:00 |
|
Nick Moore
|
8e7fee2246
|
Working flash pages for nvm.ByteArray adafruit/circuitpython#1042
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 10:55:39 +10:00 |
|
Nick Moore
|
492431a694
|
nvm.ByteArray reads & writes but no sensible erase yet adafruit/circuitpython#1042
|
2019-04-09 10:54:11 +10:00 |
|
Nick Moore
|
f8e5e2da64
|
Start on nRF nvm.ByteArray adafruit/circuitpython#1042 (doesn't do anything yet)
|
2019-04-09 10:54:11 +10:00 |
|
Scott Shawcroft
|
049b9ca094
|
Remove terse TODOs
|
2019-04-08 14:46:45 -07:00 |
|
Radomir Dopieralski
|
8323721232
|
Stop hard-coding SPI frequency in FourWire
Instead remember and use the frequency, polarity and phase that was
set when the bus was first created.
|
2019-04-06 15:15:29 +02:00 |
|
Nick Moore
|
781d301bb6
|
Remove unnecessary MP_WEAK declarations
|
2019-04-02 13:33:22 +11:00 |
|
Nick Moore
|
94bda3bde1
|
Change nRF RTC implementation to use RTC2 #1046
(to avoid interference with Bluetooth Softdevice. See
https://github.com/adafruit/circuitpython/pull/1534#issuecomment-478776240
with thanks to @bboser for pointing it out)
|
2019-04-02 13:28:22 +11:00 |
|
Nick Moore
|
6afe23d0b0
|
There isn't really a good way to calibrate this RTC adafruit/circuitpython#1046
|
2019-04-02 13:28:03 +11:00 |
|
Nick Moore
|
6206fa9a82
|
adafruit/circuitpython#1046 handle overflows in the RTC counter
|
2019-04-02 13:27:45 +11:00 |
|
Nick Moore
|
f846fa109e
|
enable NRFX RTC adafruit/circuitpython#1046
|
2019-04-02 13:27:28 +11:00 |
|
Nick Moore
|
f88f9fd748
|
more fake RTC code ... adafruit/circuitpython#1046
(works if MP_WEAK common_hal_rtc_get_time is removed)
|
2019-04-02 13:27:13 +11:00 |
|
Nick Moore
|
4a5c52fbd6
|
starting on #1046 rtc for nRF
|
2019-04-02 13:27:00 +11:00 |
|
Dan Halbert
|
0653bca323
|
Revert "Circuitpython nickzoic 1046 nrf rtc"
|
2019-03-29 16:41:29 -04:00 |
|
Nick Moore
|
71622a4515
|
There isn't really a good way to calibrate this RTC adafruit/circuitpython#1046
|
2019-03-28 09:50:09 +11:00 |
|
Nick Moore
|
28254def0b
|
adafruit/circuitpython#1046 handle overflows in the RTC counter
|
2019-03-28 09:50:09 +11:00 |
|
Nick Moore
|
b09d2c3c62
|
enable NRFX RTC adafruit/circuitpython#1046
|
2019-03-28 09:50:09 +11:00 |
|
Nick Moore
|
69cf33e6a1
|
more fake RTC code ... adafruit/circuitpython#1046
(works if MP_WEAK common_hal_rtc_get_time is removed)
|
2019-03-28 09:50:09 +11:00 |
|
Nick Moore
|
77f307c642
|
starting on #1046 rtc for nRF
|
2019-03-28 09:50:09 +11:00 |
|
Radomir Dopieralski
|
f440e41819
|
Really fix the error messages in bleio, this time
|
2019-03-25 14:04:50 +01:00 |
|
Radomir Dopieralski
|
bb10a8aaa1
|
Fix error messages in bleio
|
2019-03-25 09:19:48 +01:00 |
|
Dan Halbert
|
fe555a4098
|
Allow NFC pins to be used for other purposes.
|
2019-03-21 11:22:58 -04:00 |
|
Dan Halbert
|
99da3b9646
|
Use critical section, not lock, in CharacteristicBuffer; use a root pointer for ble_drv list
|
2019-02-21 00:19:31 -05:00 |
|
Dan Halbert
|
a345ef28f2
|
finish Makefile refactoring; nrf builds work
|
2019-02-15 18:55:10 -05:00 |
|
Dan Halbert
|
ab4194f752
|
don't allocate DMA buffer as long-lived
|
2019-02-13 19:49:57 -05:00 |
|
Dan Halbert
|
e92d90ce9c
|
Add second UARTE to busio.UART. Init uarts on startup.
|
2019-02-12 22:34:05 -05:00 |
|
Scott Shawcroft
|
37b9cd5974
|
Merge pull request #1521 from nickzoic/circuitpython-nickzoic-1045-nrf-rotaryio
Circuitpython nickzoic 1045 nrf rotaryio
|
2019-02-07 10:38:20 -08:00 |
|
Nick Moore
|
b9db977a2d
|
Change pin mode to pullup for adafruit/circuitpython#1045
|
2019-02-07 09:47:56 +11:00 |
|
Nick Moore
|
a7c349bc6e
|
Add quarter-click logic to adafruit/circuitpython#1045
|
2019-02-05 16:41:33 +11:00 |
|
Nick Moore
|
95454ecde0
|
useful output from rotaryio adafruit/circuitpython#1045
|
2019-02-05 16:41:33 +11:00 |
|
Nick Moore
|
21eb7e8e64
|
GPIOTE handlers for rotaryio.IncrementalEncoder adafruit/circuitpython#1045
|
2019-02-05 14:15:13 +11:00 |
|
Nick Moore
|
ee21cc163f
|
Start on rotaryio.IncrementalEncoder adafruit/circuitpython#1045 (does nothing yet!)
|
2019-02-05 14:15:03 +11:00 |
|
Scott Shawcroft
|
ec03887040
|
Fix hallowing and nrf builds
|
2019-01-31 11:42:15 -08:00 |
|
hathach
|
164e1e2341
|
re-init usb hardware when enable/disable SD
|
2019-01-30 14:13:07 +07:00 |
|
Scott Shawcroft
|
765d877dfa
|
Merge pull request #1499 from nickzoic/nickzoic/circuitpython-nrf-touchin-1048
Nickzoic/circuitpython nrf touchin 1048
|
2019-01-28 00:22:34 -08:00 |
|
Nick Moore
|
294b026aca
|
Automatically set a default threshold for touchio.TouchIn channels
|
2019-01-28 18:22:57 +11:00 |
|
Nick Moore
|
539aaf08b5
|
speed up measurement loop
|
2019-01-27 21:54:59 +11:00 |
|
Nick Moore
|
4a093294ac
|
hugely simplified version of the touchio.TouchIn.get_raw_reading code (adafruit/circuitpython#1048)
|
2019-01-27 15:08:03 +11:00 |
|
Dan Halbert
|
7998a7696d
|
also handle BLE_GATTS_EVT_SYS_ATTR_MISSING: fixes Android:
|
2019-01-23 22:12:38 -05:00 |
|
Dan Halbert
|
b1f1bb1389
|
support BLE_GAP_EVT_DATA_LENGTH_UPDATE_REQUEST, sent by newer devices
|
2019-01-23 21:07:23 -05:00 |
|
Dan Halbert
|
e170e03f8c
|
Merge remote-tracking branch 'adafruit/master' into bleio2
|
2019-01-21 20:38:26 -05:00 |
|
Dan Halbert
|
28cfd8a513
|
CharacteristicBuffer: make it be a stream class; add locking
|
2019-01-19 19:45:35 -05:00 |
|
Scott Shawcroft
|
edc8383e22
|
Improvements thanks to danh's review
|
2019-01-18 16:37:06 -08:00 |
|
Scott Shawcroft
|
fddc98858a
|
fix nonetype handling and nrf never reset
|
2019-01-17 18:51:40 -08:00 |
|
Scott Shawcroft
|
6404aaf411
|
Fix up nrf and using board.SPI in FourWire
|
2019-01-17 18:19:07 -08:00 |
|
Scott Shawcroft
|
760bd8d8a4
|
share fourwire and make nrf compile
|
2019-01-17 15:15:59 -08:00 |
|
Dan Halbert
|
50ee5ef24c
|
merge translations; add bleio comments; fix minor sphinx issues in midi
|
2019-01-10 21:12:17 -05:00 |
|