wallarug
|
b4a70daf17
|
updated lots
|
2019-04-27 22:35:12 +10:00 |
|
wallarug
|
cd4aaa13a3
|
added robohatmm1 board defs.
|
2019-04-25 21:13:41 +10:00 |
|
ladyada
|
9b593cd154
|
update periph submodule
|
2019-04-23 18:20:13 -04:00 |
|
ladyada
|
a5697470e1
|
fix up pybadge for final release board (swap backlite and reset)
|
2019-04-23 16:43:20 -04:00 |
|
Dan Halbert
|
15b7946fc4
|
Off-by-one error for usage of MAX_TX_IN_PROGRESS
|
2019-04-22 22:07:48 -04:00 |
|
Scott Shawcroft
|
f548305c07
|
Merge pull request #1815 from dhalbert/stop-flicker
Turn off auto_brightness if brightness is set
|
2019-04-18 15:48:39 -07:00 |
|
Dan Halbert
|
0113e0970e
|
add Display.__init__() args for brightness and auto_brightness
|
2019-04-18 15:59:16 -04:00 |
|
Scott Shawcroft
|
f7c7904e2b
|
Correct call structure for throwing errors
|
2019-04-17 13:54:29 -07:00 |
|
Carlos
|
71c4f100de
|
Update translations and use same error for PDM too
|
2019-04-17 11:28:43 -07:00 |
|
Carlos
|
5865b28592
|
[audiobusio-I2SOut] Fix translation error
|
2019-04-17 11:12:38 -07:00 |
|
Carlos
|
65cc366280
|
[audiobusio-I2SOut] Fix compilation error by using mp_raise_ValueError_varg
|
2019-04-17 11:12:38 -07:00 |
|
Carlos
|
9f63125345
|
Fix I2SOut message, fix #1765
|
2019-04-17 11:12:38 -07:00 |
|
Scott Shawcroft
|
713a38d1a2
|
Merge pull request #1754 from dmazzella/dmazzella-patch-1
add support for USER_C_MODULES
|
2019-04-17 09:41:20 -07:00 |
|
Dan Halbert
|
6684a3c723
|
Merge pull request #1778 from pewpew-game/gamepad-shift
Add GamePadShift for handling shift-register-based buttons
|
2019-04-17 10:22:24 -04:00 |
|
Scott Shawcroft
|
608bf5076b
|
Merge pull request #1804 from ITACAInnovation/master
Merging updates
|
2019-04-16 13:54:40 -07:00 |
|
Dan Halbert
|
c0ce820974
|
Merge pull request #1803 from nickzoic/circuitpython-nickzoic-1042-nrf-nvm-bytearray-3
Circuitpython nickzoic 1042 nrf nvm bytearray 3
|
2019-04-16 15:05:18 -04:00 |
|
Scott Shawcroft
|
2fa1bf4351
|
Merge remote-tracking branch 'adafruit/master' into gamepadshift
|
2019-04-16 11:23:41 -07:00 |
|
Scott Shawcroft
|
55782901d0
|
Actually call gamepadshift_tick
|
2019-04-16 11:15:42 -07:00 |
|
Scott Shawcroft
|
f58446e937
|
Merge branch 'master' into master
|
2019-04-16 10:32:38 -07:00 |
|
Scott Shawcroft
|
7822d013cd
|
Merge pull request #1798 from ntavish/papyr
Add support for Electronut Labs Papyr.
|
2019-04-16 10:13:19 -07:00 |
|
Scott Shawcroft
|
0e03a321e4
|
Fully split gamepadshift from gamepad
|
2019-04-16 10:11:54 -07:00 |
|
ITACA Innovation S.R.L
|
2d303213ed
|
Add files via upload
|
2019-04-16 16:50:54 +02:00 |
|
ITACA Innovation S.R.L
|
4f5a7ffe46
|
Updates: VID&PID, pinout
Changed VID & PID to new ones.
Changed the layout accordingly to the prototype version.
|
2019-04-16 16:45:47 +02:00 |
|
Tavish Naruka
|
32a0855d18
|
Add support for Electronut Labs Papyr.
Signed-off-by: Tavish Naruka <tavishnaruka@gmail.com>
|
2019-04-16 12:59:42 +05:30 |
|
Nick Moore
|
9c42a72275
|
Fix up single-byte access to nvm.ByteArray
|
2019-04-16 14:53:44 +10:00 |
|
Nick Moore
|
83dad37562
|
Fixups for adafruit/circuitpython#1042
|
2019-04-16 14:53:44 +10:00 |
|
Nick Moore
|
02dd32da60
|
Make some space for NVM adafruit/circuitpython#1042
|
2019-04-16 14:53:44 +10:00 |
|
Nick Moore
|
f22c01a05e
|
Switch supervisor/internal_flash to use new nrf_nvm_safe_flash_page_write
adafruit/circuitpython#1610
|
2019-04-16 14:53:44 +10:00 |
|
Nick Moore
|
66e8ceafad
|
switch nvm.ByteArray to use new nrf_nvm_safe_flash_page_write
adafruit/circuitpython#1610
|
2019-04-16 14:53:44 +10:00 |
|
Nick Moore
|
fd83cf2048
|
Add a peripherals/nrf/nvm.c to wrap flash page writes safely
|
2019-04-16 14:53:44 +10:00 |
|
Nick Moore
|
d0e5af3b09
|
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-16 14:53:44 +10:00 |
|
Nick Moore
|
531cf7eb4c
|
switch CIRCUITPY_NVM on!
|
2019-04-16 14:53:44 +10:00 |
|
Nick Moore
|
933500c448
|
nvm.ByteArray reads & writes but no sensible erase yet adafruit/circuitpython#1042
|
2019-04-16 14:53:44 +10:00 |
|
Nick Moore
|
df89156f2f
|
Start on nRF nvm.ByteArray adafruit/circuitpython#1042 (doesn't do anything yet)
|
2019-04-16 14:53:44 +10:00 |
|
Scott Shawcroft
|
254d0a53ac
|
Revert "nrf nvm: touchups to nickzoic PR #1768"
|
2019-04-15 18:50:33 -07:00 |
|
Scott Shawcroft
|
c927e6b938
|
Split GamePadShift from GamePad to save space on most boards.
|
2019-04-15 15:40:06 -07:00 |
|
Scott Shawcroft
|
22889ca29a
|
Merge pull request #1790 from pewpew-game/pybadge-stage
Enable _stage module and freeze stage library on the PyBadge
|
2019-04-15 14:25:50 -07:00 |
|
Scott Shawcroft
|
7573da03f6
|
Merge pull request #1779 from dhalbert/nrf-nvm-2
nrf nvm: touchups to nickzoic PR #1768
|
2019-04-15 14:23:35 -07:00 |
|
Radomir Dopieralski
|
ade6bd8185
|
Enable _stage module and freeze stage library on the PyBadge
|
2019-04-15 14:38:02 +02:00 |
|
siddacious
|
5135ee52d9
|
Changing to support for CP32-M4 wrover
|
2019-04-14 19:45:44 -07:00 |
|
Radomir Dopieralski
|
eeef5359f9
|
Merge branch 'master' into gamepad-shift
|
2019-04-13 11:54:25 +02:00 |
|
Dan Halbert
|
f8473f4a39
|
Merge pull request #1788 from tannewt/pinyin
Add Chinese (Pinyin) and slim down boards so it fits
|
2019-04-12 20:36:59 -04:00 |
|
Scott Shawcroft
|
defc6dceb0
|
Slim down feather m0 express
|
2019-04-12 16:18:08 -07:00 |
|
Scott Shawcroft
|
796fc3f5ab
|
Update font location and shrink a bunch of builds
|
2019-04-12 15:25:48 -07:00 |
|
Scott Shawcroft
|
c064deaaf5
|
Merge pull request #1785 from pewpew-game/ugame-displayio
Enable displayio for the ugame10 board
|
2019-04-12 13:26:51 -07:00 |
|
Scott Shawcroft
|
7161038d6b
|
Turn off displayio because it is a satellite
|
2019-04-12 11:54:32 -07:00 |
|
Radomir Dopieralski
|
0599286e32
|
Use never_reset in ugame10
|
2019-04-12 20:45:52 +02:00 |
|
Radomir Dopieralski
|
947662415c
|
Disable gamepad for feather_m0_express_crickit
|
2019-04-12 20:43:29 +02:00 |
|
Max Holliday
|
41499ac315
|
No I2S on G19
|
2019-04-12 10:06:17 -07:00 |
|
Max Holliday
|
e85b6fb83c
|
adding kicksat-sprite board
See https://github.com/RoboticExplorationLab/sprite for details
|
2019-04-12 10:06:17 -07:00 |
|