| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-11-03 | Merge pull request #2262 from jepler/cpb-speaker-disable5.0.0-alpha.5 | Dan Halbert | |
| cpb: Disable the onboard speaker until request | |||
| 2019-11-03 | Merge pull request #2252 from dhalbert/cpb-two-i2c | Scott Shawcroft | |
| nrf: allocate two I2C on CPB | |||
| 2019-11-02 | Check for no pullups on I2C on nrf; give arduino nano 33 ble two I2C devices | Dan Halbert | |
| 2019-11-01 | cpb: define the SPEAKER_ENABLE_PIN | jepler | |
| This allows the board to disable the onboard speaker until explicitly enabled in user code. Testing performed on a CPB: * Touching the AUDIO pin with a fingertip no longer generates noise/buzz * Generating a waveform with `simpleio.tone` produces no sound by default * When the board.SPEAKER_ENABLE is configured as a digital output and set True, `simpleio.tone` does produce sound Note that while guides should include information about SPEAKER_ENABLE, it's possible that some users who omitted it could view this as a breaking change. They can fix it by simply adding code similar to speaker_enable = digitalio.DigitalInOut(board.SPEAKER_ENABLE) speaker_enable.direction = digitalio.Direction.OUTPUT speaker_enable.value = True before using the internal speaker. Closes: #2258 | |||
| 2019-11-01 | nRF: Handle SPEAKER_ENABLE_PIN | jepler | |
| .. the existing code, which was never activated by the preprocessor, wasn't quite right. | |||
| 2019-11-01 | Merge pull request #2260 from dhalbert/dotstar-brightness | Scott Shawcroft | |
| Reduce DotStar status brightness; macros for status colors | |||
| 2019-11-01 | Merge pull request #2257 from Retoc/master | Scott Shawcroft | |
| added german translation | |||
| 2019-11-01 | Reduce DotStar status brightness; macros for status colors | Dan Halbert | |
| 2019-11-01 | added german translation | retoc | |
| 2019-10-31 | Merge pull request #2256 from brentru/master | Brent Rubell | |
| Switch PyPortal Titano to 8-bit Mode | |||
| 2019-10-31 | flip it around | brentru | |
| 2019-10-31 | flip MADCTL BGR bit to reflect RGB colors | brentru | |
| 2019-10-29 | we should use native rotation, and tweak madctl (not done yet) | ladyada | |
| 2019-10-29 | switch to 8-bit mode - tested on hardware! | ladyada | |
| 2019-10-29 | Update I2C and SPI documentation | Dan Halbert | |
| 2019-10-28 | nrf: allocate two I2C on CPB | Dan Halbert | |
| 2019-10-28 | Merge pull request #2240 from theacodes/fix-2086 | Dan Halbert | |
| Track unadjusted PWM duty cycle to avoid accumulating conversion errors | |||
| 2019-10-28 | Merge pull request #2247 from jepler/comment-doc-typos | Dan Halbert | |
| Comment doc typos | |||
| 2019-10-28 | Merge pull request #2242 from theacodes/fix-1563 | Dan Halbert | |
| Improve documentation for `rtc`. | |||
| 2019-10-28 | Merge pull request #2249 from dhalbert/micropy_py_sys_platform | Dan Halbert | |
| Use MICROPY_PY_SYS_PLATFORM in mpconfigport.h only | |||
| 2019-10-28 | CXD56 is a better platform name | Dan Halbert | |
| 2019-10-28 | Use MICROPY_PY_SYS_PLATFORM in mpconfigport.h only | Dan Halbert | |
| 2019-10-27 | Merge pull request #2244 from dhalbert/itsybitsy_nrf52840_express | Jeff Epler | |
| Initial Itsy nRF52840 defn | |||
| 2019-10-27 | audioio: correct trivial typo | Jeff Epler | |
| 2019-10-27 | audiobus: correct trivial typo | Jeff Epler | |
| 2019-10-27 | pixelbuf: correct trivial typos | Jeff Epler | |
| 2019-10-26 | Merge pull request #2246 from dhalbert/nano-33-ble | Limor "Ladyada" Fried | |
| Arduino Nano 33 BLE board definition | |||
| 2019-10-26 | bitbangio.SPI was not setting direction of output pins | Dan Halbert | |
| 2019-10-26 | forgot board in build.yml | Dan Halbert | |
| 2019-10-25 | Merge remote-tracking branch 'adafruit/master' into nano-33-ble | Dan Halbert | |
| 2019-10-25 | add object types to rgb status objects;mark spi rgb objects as never_reset | Dan Halbert | |
| 2019-10-25 | use bitbang SPI for DotStar; still need to fix hw SPI for dotstar | Dan Halbert | |
| 2019-10-25 | Note behavior in documentation | Thea Flowers | |
| 2019-10-25 | Fix spelling | Thea Flowers | |
| 2019-10-25 | Initial Itsy nRF52840 defn | Dan Halbert | |
| 2019-10-24 | Merge pull request #2243 from hierophect/f405-rename-and-fixes | hierophect | |
| STM32: rename feather_stm32f405_express, fix makefile defs issue | |||
| 2019-10-24 | Rename feather across folders and config, fix makefile def issue | Hierophect | |
| 2019-10-23 | Improve documentation for `rtc`. | Thea Flowers | |
| - Add examples for `rtc.RTC.datetime`. - Add type for `rtc.RTC.calibration`. - Expand on use cases for `rtc.set_time_source`. | |||
| 2019-10-23 | Merge pull request #2241 from sparkfun/master | Limor "Ladyada" Fried | |
| Adds builds for sparkfun_qwiic_micro with and without flash | |||
| 2019-10-23 | Fixes alphabetical list in board.yml nrf above qwiic_micro | ProductDev | |
| 2019-10-23 | Track unadjusted PWM duty cycle to avoid accumulating conversion errors | Thea Flowers | |
| Fixes #2086 When the frequency of a `PWMOut` is change it re-sets the PWM's duty cycle as well, since the registers have to be re-calculated based on the new frequency. Unfortunately, `common_hal_pulseio_pwmout_get_duty_cycle` will return a value very close to, but not exactly, the value passed to `common_hal_pulseio_pwmout_set_duty_cycle`. If the frequency is modified without the calling code also re-setting the duty cycle then the duty cycle will decay over time. This fixes that problem by tracking the unadjusted duty cycle and re-setting the duty cycle to that value when the frequency is changed. | |||
| 2019-10-23 | Adds two new builds to build.yml within workflows directory | ProductDev | |
| 2019-10-23 | Adds builds for sparkfun_qwiic_micro with and without flash | ProductDev | |
| 2019-10-23 | Merge pull request #2226 from kamtom480/circuitpython-device-open | Dan Halbert | |
| Do not open the same PWM device if it is already open | |||
| 2019-10-23 | Merge pull request #2237 from jepler/no-threaded-tests | Dan Halbert | |
| ci: don't run the "thread" tests | |||
| 2019-10-22 | Merge pull request #2239 from hierophect/remove-lib-stm32 | Dan Halbert | |
| Remove leftover lib/stm32lib | |||
| 2019-10-22 | remove old library | Hierophect | |
| 2019-10-21 | ci: don't run the "thread" tests | Jeff Epler | |
| This part of the unix micropython port isn't related to any functionality used in CircuitPython, and at least one of the tests (thread_gc) fails with non-negligible frequency. Reasons to revisit this in the future would include if/when thread support is added in CircuitPython. | |||
| 2019-10-21 | Clean UART on reset | Kamil Tomaszewski | |
| 2019-10-20 | Merge pull request #2234 from Senuros/master | Scott Shawcroft | |
| A few more german translations and some fixes | |||
