| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-01-14 | Merge pull request #3991 from TG-Techie/main6.1.0-rc.16.1.06.1.x | Dan Halbert | |
| Revision to TG-Watch | |||
| 2021-01-14 | Merge pull request #4004 from jepler/fix-parallel-build-main | Dan Halbert | |
| ports/unix: Fix parallel build problem | |||
| 2021-01-14 | Merge pull request #3993 from dhalbert/gattc-write-lengths | Scott Shawcroft | |
| don't check length for remote characteristic or descriptor | |||
| 2021-01-14 | ports/unix: Fix parallel build problem | Jeff Epler | |
| This is the same as I added to mpy-cross at e666e86035d5, see #3074 | |||
| 2021-01-14 | Add pin A1 as alias for AD1; A1 is preferred | Dan Halbert | |
| 2021-01-14 | restore TG-Watch USB_PID from accidental overwrite | Jonah Yolles-Murphy | |
| 2021-01-14 | correct USB_PRODUCT for TG-Watch | Jonah Yolles-Murphy | |
| 2021-01-13 | final name and extra board | Jonah Yolles-Murphy | |
| 2021-01-13 | don't check length for remote characteristic or dedescriptor | Dan Halbert | |
| 2021-01-13 | Merge pull request #3982 from jepler/esp32s2-make-flash | Dan Halbert | |
| esp32s2: Fix 'make flash' | |||
| 2021-01-12 | Merge pull request #3983 from dhalbert/6.1.0-shrink-builds | Jeff Epler | |
| shrink some de_DE builds | |||
| 2021-01-12 | Merge pull request #3978 from ladyada/neotrinkey | Jeff Epler | |
| samd21 board with only 4 neopixels + two touchpads | |||
| 2021-01-12 | shrink some de_DE builds | Dan Halbert | |
| 2021-01-12 | esp32s2: Fix 'make flash' | Jeff Epler | |
| As reported by @jerryneedell, this change was incorrect; the given ESPTOOL_FLAGS caused `write_flash` to be repeated twice, which doesn't work. Closes #3981. | |||
| 2021-01-12 | Merge pull request #3733 from jepler/audioout-esp32 | Dan Halbert | |
| esp32s2: Add I2SAudioOut | |||
| 2021-01-12 | Merge pull request #3966 from dhalbert/samd-dac-channels | Dan Halbert | |
| fix atmel-samd DAC channel selection logic | |||
| 2021-01-12 | fix some precommit complaints | lady ada | |
| 2021-01-12 | samd21 board with only 4 neopixels + two touchpads | lady ada | |
| 2021-01-12 | Merge pull request #3959 from ladyada/main | Scott Shawcroft | |
| try adding new feather def | |||
| 2021-01-12 | Merge remote-tracking branch 'origin/main' into audioout-esp32 | Jeff Epler | |
| 2021-01-12 | Merge branch 'main' into TouchAlarm | microDev | |
| 2021-01-11 | Merge pull request #3964 from dhalbert/ble-timing-fixes | Scott Shawcroft | |
| Round BLE timing values; fix timeout check | |||
| 2021-01-11 | Update ports/atmel-samd/common-hal/analogio/AnalogOut.c | Dan Halbert | |
| whoops, yes! Co-authored-by: Scott Shawcroft <scott@tannewt.org> | |||
| 2021-01-11 | Merge pull request #3944 from BennyE/wifi-authmode | Scott Shawcroft | |
| esp32-s2: Adding authmode keyword | |||
| 2021-01-11 | Merge pull request #3954 from anecdata/mpconfigport | Scott Shawcroft | |
| ESP32-S2: added sys.platform | |||
| 2021-01-11 | Merge pull request #3960 from dhalbert/pwmout-tcc-resolution | Scott Shawcroft | |
| Look up TCC resolution as necessary | |||
| 2021-01-11 | Merge pull request #3930 from jerryneedell/jerryn_feathers2_led | Scott Shawcroft | |
| UMFEATHERS2 - implement use of DotStar for status led | |||
| 2021-01-11 | Merge pull request #3659 from iot49/msgpack | Scott Shawcroft | |
| module msgpack | |||
| 2021-01-11 | Merge pull request #3955 from caiokat/fix_recvfrom_into | Scott Shawcroft | |
| Fix socket.recvfrom_into() | |||
| 2021-01-11 | fixes and enhancement for touch alarm | microDev | |
| - prevent touch alarm initialization if not set - fix wake_alarm is set to touch alarm on autoreload - add ability to have multiple touch alarms in light sleep | |||
| 2021-01-10 | fix atmel-samd DAC channel selection logic | Dan Halbert | |
| 2021-01-10 | Round BLE timing values; fix timeout check | Dan Halbert | |
| 2021-01-10 | ok lets try without auto-display | lady ada | |
| 2021-01-10 | Update ports/esp32s2/common-hal/wifi/Network.c | BennyE | |
| Avoid to use yet another variable. Co-authored-by: Scott Shawcroft <scott@tannewt.org> | |||
| 2021-01-10 | update TG-Watch pins, name, and frozen libraries | Jonah Yolles-Murphy | |
| 2021-01-09 | compilier | lady ada | |
| 2021-01-09 | fix dup usb | lady ada | |
| 2021-01-09 | add tft | lady ada | |
| 2021-01-09 | copypaste typo | lady ada | |
| 2021-01-09 | Look up TCC resolution as necessary | Dan Halbert | |
| 2021-01-09 | background tasks: Add, use port_wake_main_task | Jeff Epler | |
| Some ports need an extra operation to ensure that the main task is awoken so that a queued background task will execute during an ongoing light sleep. This removes the need to enable supervisor ticks while I2SOut is operating. Closes: #3952 | |||
| 2021-01-09 | esp32s2: audiobusio: move i2s_common inside | Jeff Epler | |
| Originally, I believed the implementation might be shared with AudioOut, as on the ESP32 (non-S2) the I2S peripheral was also used to drive the DAC. However, this is not the case on ESP32-S2 and appears it will not be the case with the ESP32-S3 or -C3, to the extent that there's skeletal support for either of them in esp-idf master branch. However, it could still be shared by I2SIn or PDMIn (the latter being hypothetically implemented as I2SIn + digital postprocessing like we did in the atmel-sam port, to my understanding), so I moved it to the common-hal folder. | |||
| 2021-01-09 | esp32s2: Rename ESP_CALL_RAISE to CHECK_ESP_RESULT | Jeff Epler | |
| Suggested by @tannewt, thanks! | |||
| 2021-01-09 | forgot deinit | lady ada | |
| 2021-01-09 | newline | lady ada | |
| 2021-01-09 | woops out of sync header, plus... i dunno add some frozen modules cause we ↵ | lady ada | |
| have almost no RAM :( | |||
| 2021-01-09 | nowhitespace | lady ada | |
| 2021-01-09 | Merge branch 'main' into main | Limor "Ladyada" Fried | |
| 2021-01-09 | try adding new feather def | lady ada | |
| 2021-01-09 | disable msgpack on boards without room | foamyguy | |
