| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-01-12 | Merge remote-tracking branch 'origin/main' into audioout-esp32 | Jeff Epler | |
| 2021-01-11 | Merge pull request #3973 from kattni/update-code-py | Dan Halbert | |
| Update created code.py file formatting. | |||
| 2021-01-11 | Merge pull request #3964 from dhalbert/ble-timing-fixes | Scott Shawcroft | |
| Round BLE timing values; fix timeout check | |||
| 2021-01-11 | Merge pull request #3972 from jepler/update-ulab-1.6.1 | Scott Shawcroft | |
| ulab: bump to version 1.6.1 | |||
| 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 #3291 from dhalbert/robots.txt | Scott Shawcroft | |
| add robots.txt to specify doc versions to appear in search engines | |||
| 2021-01-11 | Merge pull request #3957 from dhalbert/gcc10-debug-builds | Scott Shawcroft | |
| new CIRCUITPY_DEBUG flag passes DEBUG into C preprocessor | |||
| 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 #3949 from jepler/pre-commit-translations | Scott Shawcroft | |
| pre-commit: Add check for translations being up to date | |||
| 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 #3958 from dhalbert/sleep_memory-len-and-bool | Scott Shawcroft | |
| restore len(alarm.sleep_memory) and bool(alarm.sleep_memory) | |||
| 2021-01-11 | Merge pull request #3955 from caiokat/fix_recvfrom_into | Scott Shawcroft | |
| Fix socket.recvfrom_into() | |||
| 2021-01-11 | Merge pull request #3953 from dhalbert/update-tinyusb-to-fix-_ticks_enabled | Scott Shawcroft | |
| update tinyusb; _ticks_enabled only for SAMD21 | |||
| 2021-01-11 | Merge pull request #3946 from weblate/weblate-circuitpython-main | Scott Shawcroft | |
| Translations update from Weblate | |||
| 2021-01-11 | Adding escape characters. | Kattni Rembor | |
| 2021-01-11 | Update created code.py file formatting. | Kattni Rembor | |
| 2021-01-11 | ulab: bump to version 1.6.1 | Jeff Epler | |
| 2021-01-10 | merge from upstream and update to 6.0.x | Dan Halbert | |
| 2021-01-10 | Merge remote-tracking branch 'adafruit/main' into robots.txt | Dan Halbert | |
| 2021-01-10 | Round BLE timing values; fix timeout check | Dan Halbert | |
| 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-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 | disable msgpack on boards without room | foamyguy | |
| 2021-01-08 | avoid inline compile errors | Dan Halbert | |
| 2021-01-08 | restore len(alarm.sleep_memory) and bool(alarm.sleep_memory) | Dan Halbert | |
| 2021-01-08 | need to find strings in ulab | Jeff Epler | |
| 2021-01-08 | ensure gettext program is available to pre-commit | Jeff Epler | |
| 2021-01-08 | Fix socket.recvfrom_into() | Caio Henrique de Queiroz Katayama | |
| 2021-01-08 | added platform | anecdata | |
| 2021-01-08 | remove commented line | jerryneedell | |
| 2021-01-08 | initialize LDO2 in board_init() | jerryneedell | |
| 2021-01-08 | update tinyusb; _ticks_enabled only for SAMD21 | Dan Halbert | |
| 2021-01-08 | I2SOut: Enable ticks during audio playback | Jeff Epler | |
| .. otherwise, the background callback to load the I2S fifos does not get run. (I'm not sure this is _correct_ behavior of sleep + background tasks, but it is the current behavior) | |||
| 2021-01-08 | port_i2s_play: fill the initial buffer via background callback | Jeff Epler | |
| There were _possibly_ problems where this routine was being entered by direct call AND by background callback. Schedule the work here, and it will be done almost immediately, without worry about interference. I don't know if this is strictly necessary, but it doesn't hurt. Since the I2S clock is being run all the time, we have to enter the background task to fill the FIFO with zeros constantly anyway. | |||
| 2021-01-08 | port_i2s_play: remove build error | Jeff Epler | |
| 2021-01-08 | i2s_fill_buffer: remove debug print | Jeff Epler | |
| 2021-01-08 | i2s_fill_buffer: Need to fill with zeros when stopping | Jeff Epler | |
| 2021-01-07 | esp2s2: enlarge stack-buffer, use it instead of i2s_zero_dma_buffer | Jeff Epler | |
| .. it's not clear that there was a problem with i2s_zero_dma_buffer, but just in case. | |||
| 2021-01-07 | esp32s2: i2s: must reset buffer, otherwise wave samples don't start | Jeff Epler | |
| .. and other housekeeping when starting to play a sample | |||
| 2021-01-07 | esp32s2: i2s: fix accounting for "stretched" frames | Jeff Epler | |
| 2021-01-07 | esp32s2: port: Ensure JTAG pins are available for debugging | Jeff Epler | |
| 2021-01-07 | Updated code as per helpful suggestion | BennyE | |
| 2021-01-07 | esp32s2: 'make flash': Allow customizing the esptool flags | Jeff Epler | |
| This can be useful so that e.g., on a Kaluga when programming via the FTDI chip, you can override the variable to specify "--after=hard_reset" to automatically return to running CircuitPython, choose a different baud rate (921600 is about 2s faster than 460800), etc: make BOARD=espressif_kaluga_1 ESPTOOL_FLAGS="-b 921600 --before=default_reset --after=hard_reset" | |||
| 2021-01-07 | pre-commit: Add checking of 'make translate' status | Jeff Epler | |
| .. when this check completes with an error, circuitpython.pot has been updated and the changes can be staged. | |||
| 2021-01-07 | circuitpython.pot: regenerate without timestamp | Jeff Epler | |
