| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-01-23 | Make palette color ordering consistent with ColorConvertes and fix blinka. | Scott Shawcroft | |
| 2019-01-23 | Use common delay function during display init so we don't starve background ↵ | Scott Shawcroft | |
| tasks. | |||
| 2019-01-22 | Merge remote-tracking branch 'adafruit/master' into HEAD | Scott Shawcroft | |
| 2019-01-21 | struct.pack_into incorrect buffer size check | Dan Halbert | |
| 2019-01-21 | Merge pull request #1479 from siddacious/master | Scott Shawcroft | |
| adding height and width to OnDiskBitmap for #1460 | |||
| 2019-01-20 | adding height and width to OnDiskBitmap for #1460 | Bryan Siepert | |
| 2019-01-20 | Merge remote-tracking branch 'adafruit/master' into struct-compat | Dan Halbert | |
| 2019-01-20 | Improve struct compatibility with CPython | Dan Halbert | |
| 2019-01-19 | Merge branch 'master' into pixelbuf | Roy Hooper | |
| 2019-01-18 | Cleanup display rework for PR. | Scott Shawcroft | |
| Fixes #1465. Fixes #1337. Fixes #1168 | |||
| 2019-01-17 | fix nonetype handling and nrf never reset | Scott Shawcroft | |
| 2019-01-17 | Fix up nrf and using board.SPI in FourWire | Scott Shawcroft | |
| 2019-01-17 | share fourwire and make nrf compile | Scott Shawcroft | |
| 2019-01-17 | Fix other builds and hallowing | Scott Shawcroft | |
| 2019-01-17 | pyportal compiles and tweak blinka colors | Scott Shawcroft | |
| 2019-01-17 | External fourwire works and blinka splash after | Scott Shawcroft | |
| 2019-01-16 | Rework displays in prep for dynamic support and 8bit parallel. | Scott Shawcroft | |
| 2019-01-15 | Fix default values on last line. | Scott Shawcroft | |
| 2019-01-14 | Add subclass support to displayio. | Scott Shawcroft | |
| Also, swap make_news to accept a kwarg map and refine param checking. Fixes #1237 | |||
| 2019-01-14 | Add support for rendering a shape. | Scott Shawcroft | |
| Fixes #1171 | |||
| 2019-01-13 | Fresh combined checkin of _pixelbuf library. | Roy Hooper | |
| 2019-01-11 | Merge pull request #1453 from tannewt/text_on_pyportal | Scott Shawcroft | |
| Enable the display on pyportal | |||
| 2019-01-10 | merge translations; add bleio comments; fix minor sphinx issues in midi | Dan Halbert | |
| 2019-01-10 | Support rendering groups inside groups | Scott Shawcroft | |
| 2019-01-10 | Polish thanks to Dan's feedback | Scott Shawcroft | |
| 2019-01-09 | Add USB MIDI support for SAMD and nRF. | Scott Shawcroft | |
| The API should be identical to using a UART for MIDI. Fixes #672 | |||
| 2019-01-07 | add CharacteristicBuffer; UART seems to work! | Dan Halbert | |
| 2018-12-30 | LocalPeripheral is now Peripheral; more work on basic GATTS support; UART ↵ | Dan Halbert | |
| not working yet | |||
| 2018-12-29 | free event handlers on reset; fix typo in Broadcaster | Dan Halbert | |
| 2018-12-28 | Add Broadcaster. Reset correctly on reload. | Dan Halbert | |
| 2018-12-27 | wip: advertising works, but not connection | Dan Halbert | |
| 2018-12-07 | bleio WIP: redo for more immutability; use sd_* routines for internal flash ↵ | Dan Halbert | |
| write | |||
| 2018-11-27 | Merge pull request #1323 from notro/os_mkdir_a_b | Dan Halbert | |
| shared-module/os: Fix os.mkdir('a/b') | |||
| 2018-11-09 | shared-module/os: Fix os.mkdir('a/b') | Noralf Trønnes | |
| This fixes commit a99f9427420d("'/' and '\' are also acceptable ends of the path now") which broke mkdir. The problem is where the directory name is a single letter like this: >>> os.mkdir('a') >>> os.mkdir('a/b') Traceback (most recent call last): File "<stdin>", line 1, in <module> OSError: [Errno 17] File exists >>> os.mkdir('a/bb') >>> I wasn't smart enough to fix this in the oofatfs library, so I did it in the os shared module by creating a path lookup function for the os methods that only deals with directories. I reverted the library change introduced by the aforementioned commit. This means that os.stat and os.rename can't handle trailing slashes. This is to avoid allowing filenames with trailing slashes to pass through. In order to handle trailing slashes for these it would be necessary to check if it really is a directory before stripping. I didn't do this since the original issue was to make os.chdir tolerate trailing slashes. There's an open MicroPython issue #2929 wrt. trailing slashes and mkdir. | |||
| 2018-11-09 | Build refinement to handle warnings and quiet output | Scott Shawcroft | |
| 2018-11-08 | Move atmel-samd to tinyusb and support nRF flash. | Scott Shawcroft | |
| This started while adding USB MIDI support (and descriptor support is in this change.) When seeing that I'd have to implement the MIDI class logic twice, once for atmel-samd and once for nrf, I decided to refactor the USB stack so its shared across ports. This has led to a number of changes that remove items from the ports folder and move them into supervisor. Furthermore, we had external SPI flash support for nrf pending so I factored out the connection between the usb stack and the flash API as well. This PR also includes the QSPI support for nRF. | |||
| 2018-11-07 | bring bleio PR up to date | Dan Halbert | |
| 2018-10-31 | add channels and bits_per_sample to audioio.WaveFile | caternuson | |
| 2018-10-25 | Add "dhcp" property to turn DHCP on and off | Nick Moore | |
| 2018-10-21 | bleio: Remove redundant struct field | arturo182 | |
| 2018-10-21 | nrf: Cleanup of the ble driver | arturo182 | |
| Moved the functions to classes that they belong to. | |||
| 2018-10-21 | nrf: Move the Peripheral class to bleio as Device | arturo182 | |
| This was the last class from ubluepy and so that module is now gone. The Device class offers both Peripheral and Central functionality. See the inline docs for more info. | |||
| 2018-10-21 | nrf: Move the Service class from ubluepy to the shared bleio module | arturo182 | |
| 2018-10-21 | nrf: Move the Characteristic class from ubluepy to the shared bleio module | arturo182 | |
| 2018-10-21 | bleio: Remove SAMD mention in include guard | arturo182 | |
| Damn copy-paste! | |||
| 2018-10-21 | bleio: Move the Scanner class to a shared module | arturo182 | |
| 2018-10-21 | bleio: Move ScanEntry to shared module and add a new AdvertisementData class | arturo182 | |
| 2018-10-21 | bleio: Add a new Address class | arturo182 | |
| Use the new in the Adapter singleton. | |||
| 2018-10-16 | timer ticks for DHCP state machine for wiznet | Nick Moore | |
| 2018-10-16 | fixup | Nick Moore | |
