| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-07-19 | docs: Minor updates before 1.0.01.0.01.x | Scott Shawcroft | |
| 2017-07-14 | docs: tweak css so a horizontal scroll bar shows up on the wide pinout ↵ | Scott Shawcroft | |
| tables. Fixes #166 | |||
| 2017-07-13 | atmel-samd: Update README and add pinout tables that map MCU names | Scott Shawcroft | |
| to names in the board module and explain pin capabilities. Fixes #149 | |||
| 2017-07-12 | shared-bindings: Fix neopixel_write example. I forgot to save in the editor. ↵ | Scott Shawcroft | |
| Fixes #163 | |||
| 2017-07-12 | shared-bindings: Add neopixel_write example. Fixes #163 | Scott Shawcroft | |
| 2017-07-06 | atmel-samd: Reboot to bootloader when a 1200 baud serial connection is1.0.0-rc.4 | Scott Shawcroft | |
| closed. This is how Arduino triggers the bootloader. | |||
| 2017-07-06 | atmel-samd: Give the on board flash filesystem a unique volume ID. This is ↵ | Scott Shawcroft | |
| useful for identifying filesystem mounts and matching them up to hardware. | |||
| 2017-07-05 | atmel-samd: Add Trinket Rev D support. | Scott Shawcroft | |
| 2017-07-03 | atmel-samd: Add TX/RX and SCL/SDA pins names for Gemma M0. | Scott Shawcroft | |
| 2017-07-03 | atmel-samd: Switch streams to non-blocking mode. Fixes #159. | Scott Shawcroft | |
| 2017-07-03 | atmel-samd: Update Gemma M0 USB device name. | Scott Shawcroft | |
| 2017-07-03 | atmel-samd: Update Gemma M0 for release revision. | Scott Shawcroft | |
| 2017-06-30 | atmel-samd: Add IR_TX and IR_RX pin names for REMOTEOUT and REMOTEIN to the ↵1.0.0-rc.3 | Scott Shawcroft | |
| CircuitPlayground Express pins to match the silkscreen. | |||
| 2017-06-29 | Fix USB Busy error for kbd hid. Made kbd USB report descriptor be | Dan Halbert | |
| COMPILER_WORD_ALIGNED as done in #118 for mouse. Added COMPILER_WORD_ALIGNED to other UDC_DESC_STORAGE declarations that might have the same issue in the future. | |||
| 2017-06-20 | atmel-samd: Fix AudioOut buffer playback by supporting bytes_per_sample.1.0.0-rc.2 | Scott Shawcroft | |
| Thanks to @ntoll for finding this bug! | |||
| 2017-06-19 | docs: Update design guide for new DigitalInOut API. | Scott Shawcroft | |
| 2017-06-16 | atmel-samd: Introduce board reset mechanic used on CircuitPlayground1.0.0-rc.1 | Scott Shawcroft | |
| Express to ensure the Neopixels are off after reloads. | |||
| 2017-06-16 | atmel-samd: Add user initiated safe mode and rework board.c for | Scott Shawcroft | |
| board specific functionality. Fixes #155 | |||
| 2017-06-16 | shared-bindings: Move enum-like classes out of DigitalInOut into digitalio. | Scott Shawcroft | |
| Also, rename Direction.IN to Direction.INPUT and Direction.OUT to Direction.OUTPUT. This simplifies using them. Prior to the nativeio split this would have led to clutter in the top-level namespace but having digitalio prevents this. Fixes #152 | |||
| 2017-06-12 | atmel-samd: Fix sharing TCCs by statically storing the current period. | Scott Shawcroft | |
| A previous fix improved the duty_cycle channel value computation by removing the reliance on the PER register which gave old values. It saved the period on the object but failed to set anything for reused timers. So, this breaks it out into a separate array that can be shared across all object regardless of whether it used a new or existing timer. | |||
| 2017-06-12 | atmel-samd: Fix TCC1, its two channels and four wave outputs. | Scott Shawcroft | |
| Previously it was configured as four and four which configured the incorrect channels. | |||
| 2017-06-09 | atmel-samd: Set up the tcc_instance when using an already active TCC. | Scott Shawcroft | |
| This fixes a hard lock that happens when using a second channel on an in use TCC. The lock occurred when setting the duty cycle on the channel because the hw address was not available to ASF. Thanks to @ladyada for finding the bug. | |||
| 2017-06-09 | atmel-samd: Reset TCC channel in use array on reset. | Scott Shawcroft | |
| This fixes spurious "All timers in use" exceptions. Thanks to @ladyada for finding this issue. | |||
| 2017-06-09 | atmel-samd: Handle TCC2 correctly. Unlike the other TCCs its 16bit | Scott Shawcroft | |
| rather than 24bit. Setting the period for more than a 16bit number caused the TCC to be in a weird state where resetting it would hard crash. Fixes #153 | |||
| 2017-06-09 | py: Prevent mp_arg_check_num from being optimized away by the compiler. | Scott Shawcroft | |
| Also, change the MICROPY_ERROR_REPORTING checks to macros to make it clear the compiler can handle it immediately. Fixes #154 | |||
| 2017-06-08 | atmel-samd: Fix PWMOut duty_cycle when used with TCC peripherals. | Scott Shawcroft | |
| Fixes #148. Fixes #151 | |||
| 2017-06-07 | docs: Add note about composition to the design guide. | Scott Shawcroft | |
| 2017-06-07 | shared-bindings: Update docs to remove with statements from examples but add ↵ | Scott Shawcroft | |
| more detail to the design guide about their use. | |||
| 2017-06-07 | docs: Add module support matrix. | Scott Shawcroft | |
| 2017-06-07 | docs: Fix header lines that are too short. | Scott Shawcroft | |
| 2017-06-06 | shared-bindings: Allow for switching direction with the attribute. | Scott Shawcroft | |
| 2017-06-06 | shared-bindings: Fix duty_cycle parameter description and error message. | Scott Shawcroft | |
| 2017-06-06 | atmel-samd: Change Metro PID to 0x8014 so it doesn't conflict with Arduino's ↵ | Scott Shawcroft | |
| PID. | |||
| 2017-06-05 | Merge pull request #146 from dhalbert/stack_check-fix | Scott Shawcroft | |
| Fix broken mp_stack_check() when using -flto | |||
| 2017-06-04 | Fix broken mp_stack_check: force mp_stack_ctrl_init() and mp_stack_usage() ↵ | Dan Halbert | |
| not to be inlined even with -flto | |||
| 2017-05-29 | atmel-samd: Correct the USB PID of the CircuitPlayground Express. | Scott Shawcroft | |
| 2017-05-25 | Change the approach for input so that its not included in every single ↵ | Scott Shawcroft | |
| build. Put it next to readline instead. | |||
| 2017-05-25 | atmel-samd: Add input support. Fixes #143 | Scott Shawcroft | |
| 2017-05-24 | Doc tweaks to clarify external libraries, new boards and add HID library. | Scott Shawcroft | |
| 2017-05-24 | atmel-samd: correctly reset the REPL history on reload. Fixes #141 | Scott Shawcroft | |
| 2017-05-23 | Merge pull request #135 from robomike/pins | Scott Shawcroft | |
| Renamed spi flash to ext flash not to confuse with the actual spi flash | |||
| 2017-05-23 | atmel-samd:renamed spi flash to confuse with the actual spi flash | robomike | |
| 2017-05-21 | Merge pull request #138 from dhalbert/add-ure-et-al | Scott Shawcroft | |
| Enable ure, center, partition, frozenset, splitlines, reversed for Express builds. | |||
| 2017-05-21 | Merge branch 'master' into add-ure-et-al | Dan Halbert | |
| 2017-05-21 | Remove code size check. Its causing builds to fail because the new GCC made ↵ | Scott Shawcroft | |
| it slightly larger. | |||
| 2017-05-20 | Enable ure, center, partition, frozenset, splitlines, reversed for Express ↵ | Dan Halbert | |
| builds. | |||
| 2017-05-20 | atmel-samd: Enable autoreload by default again.0.10.1 | Scott Shawcroft | |
| 2017-05-16 | Update README with new boards and new differences. | Scott Shawcroft | |
| 2017-05-15 | atmel-samd: Fixup autoreset after switching boot to running once.0.10.0 | Scott Shawcroft | |
| 2017-05-15 | atmel-samd: Support wav file playback. Tested up to 16bit 22.1khz. Must be ↵ | Scott Shawcroft | |
| mono file! SD card support may work but likely needs buffer tuning. Its untested. Fixes #105 | |||
