summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-03-29Merge pull request #4490 from weblate/weblate-circuitpython-mainJeff Epler
Translations update from Weblate
2021-03-29Translated using Weblate (Chinese (Pinyin))hexthat
Currently translated at 100.0% (970 of 970 strings) Translation: CircuitPython/main Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/zh_Latn/
2021-03-27Merge remote-tracking branch 'origin/main' into mainHosted Weblate
2021-03-27Merge pull request #4468 from jepler/metro-m7-dup-pinsJeff Epler
remove duplicate RX/TX pin lines
2021-03-27Merge remote-tracking branch 'origin/main' into mainHosted Weblate
2021-03-26Merge pull request #4486 from kmatch98/displayio_area_expandDan Halbert
`displayio` and `vectorio`: move to displayio_area_union and away from _expand
2021-03-27Merge remote-tracking branch 'origin/main' into mainHosted Weblate
2021-03-26Merge pull request #4499 from dhalbert/rp2040-lengthen-sda-tx-hold-timeLimor "Ladyada" Fried
Length RP2040 I2C SDA hold time
2021-03-27Merge remote-tracking branch 'origin/main' into mainHosted Weblate
2021-03-26Merge pull request #4497 from jepler/spi-enhancementsLimor "Ladyada" Fried
Spi enhancements
2021-03-26Incorporate https://github.com/adafruit/pico-sdk/pull/2Dan Halbert
2021-03-26run uncrustifyJeff Epler
2021-03-26Merge remote-tracking branch 'origin/main' into mainHosted Weblate
2021-03-26Merge pull request #4487 from jepler/fix-spi-gapsJeff Epler
Fix spi gaps
2021-03-26adafruit_bus_device: SPIDevice: Fix so it works with bitbangio.SPIJeff Epler
.. by calling methods, same as we did for I2C
2021-03-26bitbangio.SPI.read: Support write_value, fix some other nitsJeff Epler
2021-03-26Parenthesize double-division for clarityJeff Epler
2021-03-26mimxrt10xx: Use the proper "betweenTransferDelay" (et al) valuesJeff Epler
Set the betweenTransferDelay to the SCK low-time, to avoid long pauses between bytes (transfers) while preventing the last SCK cycle in a byte from being a runt pulse. Compared to an earlier revision of this change, which just set the delays all to zero, this doesn't break using an AirLift, which was sensitive to the runt pulses (the simple loopback-wire test didn't detect the problem)
2021-03-26mimxrt10xx: Factor out "transfer_common"Jeff Epler
.. and set the "MasterPcsContinuous" flag, which removes some of the gap between bytes of a single SPI transaction
2021-03-26Freeze ESP32SPI into mimxrt1011_evkJeff Epler
.. so that it is more conveniently like the metro m7 for my testing
2021-03-26mimxrt10xx: busio: cap SPI baudrate at 30MHz per datasheetJeff Epler
2021-03-26Merge remote-tracking branch 'origin/main' into mainHosted Weblate
2021-03-25Merge pull request #4378 from Gadgetoid/patch-remove-rp2040-i2c-bitbangDan Halbert
RP2040: Remove short-write bitbang from I2C
2021-03-26Translated using Weblate (English (United Kingdom))Gareth Coleman
Currently translated at 99.5% (966 of 970 strings) Translation: CircuitPython/main Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/en_GB/
2021-03-25Merge pull request #4481 from tannewt/external_devicesScott Shawcroft
Switch devices.h to nvm.toml data
2021-03-25Fix devices include by splitting type from definesScott Shawcroft
2021-03-25Fix 16MB Winbond namesScott Shawcroft
2021-03-25Merge pull request #4484 from kmatch98/vector_fixScott Shawcroft
Corrects vectorio.Rectangle size dimensions
2021-03-25Switch devices.h to nvm.toml dataScott Shawcroft
2021-03-25remove duplicated code, replace with displayio_area_canonKevin Matocha
2021-03-25move to displayio_area_union and away from _expandKevin Matocha
2021-03-25Merge pull request #4474 from jepler/fix-spi-frequencyScott Shawcroft
mimxrt: SPI: Set the TCR value returned by MasterBaudSetRate
2021-03-25Merge pull request #4480 from tannewt/raspberrypi_link_line_lengthLimor "Ladyada" Fried
Use GCC @file to shorten linker command length
2021-03-25correct rectangle size dimensionsKevin Matocha
2021-03-25Merge pull request #4483 from Neradoc/implement-issue-4470Jeff Epler
Implement issue #4470
2021-03-25sort languages in a way that is not case sensitiveNeradoc
2021-03-24implement issue #4470Neradoc
move the language allow list to generate_download_info() and use it there too
2021-03-24Use GCC @file to shorten linker command lengthScott Shawcroft
This hopefully fixes linking on Windows with cmd.exe
2021-03-24mimxrt: SPI: Set the TCR value returned by MasterBaudSetRateJeff Epler
without this, the baud rate could be wrong; in my testing, it was low by a factor of 2 when requesating baudrate=1_000_000 (1MHz). When passing the baudrate in to LPSPI_MasterInit, the setting is made automatically, but LPSPI_MAster_SetBaudRate just returns it via the out-parameter tcrPrescaleValue.
2021-03-23remove duplicate RX/TX pin linesJeff Epler
2021-03-23Merge pull request #4446 from tannewt/rp2040_flashDan Halbert
Switch RP2040 flash settings to nvm.toml
2021-03-23Merge pull request #4397 from tyomitch/patch-1Jeff Epler
[spi_flash] handle reentrance gracefully
2021-03-23Merge pull request #4465 from anecdata/udp_serverLucian Copeland
swap recvfrom_into() port byte-order
2021-03-23Improve Winbond naming and correct board settingsScott Shawcroft
2021-03-23[spi_flash] handle reentrance gracefullyArtyom Skrobov
Report failure instead of deadlocking the device
2021-03-22swap recvfrom_into() port byte-orderanecdata
2021-03-22Checkout before installing depsScott Shawcroft
2021-03-22Merge pull request #4464 from kmatch98/transform_fixScott Shawcroft
update logic for displayio.TileGrid's transform_xy
2021-03-22Merge pull request #4462 from jepler/disable-usb-cdcScott Shawcroft
storage: Correct when we check for USB mounts
2021-03-22Merge remote-tracking branch 'adafruit/main' into rp2040_flashScott Shawcroft