summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-03-16Translated using Weblate (French)Noel Gaetan
Currently translated at 98.8% (964 of 975 strings) Translation: CircuitPython/main Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/fr/
2021-03-16Translated using Weblate (German)Daniel Glocker
Currently translated at 80.3% (783 of 975 strings) Translation: CircuitPython/main Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/de/
2021-03-15Merge pull request #4410 from jepler/update-ulab-dotScott Shawcroft
Update ulab
2021-03-15Merge pull request #4412 from kamtom480/spi_and_i2cScott Shawcroft
spresense: minor changes for i2c, spi and uart
2021-03-15ok it would be nice to know how to run itJeff Epler
2021-03-15cursory documentation of pre-commitJeff Epler
2021-03-15codeformat: Do search&replace without sedJeff Epler
2021-03-15Add back empty lineScott Shawcroft
2021-03-15modifications by pre-commitJeff Epler
2021-03-15codeformat: use pathlib for correct(-er) processing of * vs ** in globsJeff Epler
2021-03-15codeformat: Run sed only on requested filesJeff Epler
When running from pre-commit, we believe the different invocations of sed were racing with each other, sometimes leaving zero-byte files in the filesystem (ow)
2021-03-15codeformat: require filenames, filter them by include/exclude listsJeff Epler
2021-03-15codeformat: Exclude specified files even from commandline, for pre-commitJeff Epler
2021-03-15pre-commit: Have pre-commit pass the list of files to codeformat.pyJeff Epler
2021-03-15Add Sourcegraph link and raspberrypi portScott Shawcroft
2021-03-15pre-commit: only run uncrustify if changed files are detectedJeff Epler
This adds the "no-run-if-empty" flag to the xargs invocation. Otherwise, if git diff names no files, the command is run once with no agument specified which leads to running on a default list of files that appears to include ignored files and files in submodules. I am uneasy about how this works (it means that `pre-commit run --all` doesn't actually check all files) but that's a separate issue.
2021-03-15Merge pull request #4362 from microDev1/code-formattingJeff Epler
Add code formatting and translations check
2021-03-15update line numberingmicroDev
2021-03-15spresense: empty rx uart fifo after initializationKamil Tomaszewski
2021-03-15spresens: configure pin mode for i2c and spiKamil Tomaszewski
2021-03-15added board configuration for Sparkfun ThingPlus RP2040mintakka
2021-03-15Update ulabJeff Epler
2021-03-15run code formatting scriptmicroDev
2021-03-15update pre-commitmicroDev
- add formatting check - add translations check
2021-03-14Merge pull request #4407 from jposada202020/RTC_doc_correctionsJeff Epler
RTC and Touchin docs changes
2021-03-14Merge pull request #4406 from weblate/weblate-circuitpython-mainJeff Epler
Translations update from Weblate
2021-03-14disable bitmaptools on over-full boardJeff Epler
2021-03-15Translated using Weblate (French)Hugo Dahl
Currently translated at 98.4% (960 of 975 strings) Translation: CircuitPython/main Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/fr/
2021-03-14fix docsJeff Epler
2021-03-14bitmaptools.readinto: Fix diagnostics on atmel-samd buildsJeff Epler
2021-03-14RTC and Touchin docs changesjposada202020
2021-03-14Fixed initial settings for program_struct to allow more than 1 program per pioroot
2021-03-14make translateJeff Epler
2021-03-14Merge pull request #4402 from jposada202020/analogio_doc_correctionsJeff Epler
Change in documentation in Analogio
2021-03-14Merge pull request #44 from adafruit/mainDavePutz
Update from adafruit main
2021-03-14bitmaptools: Add readintoJeff Epler
When reading uncompressed bitmap data directly, readinto can work much more quickly than a Python-coded loop. On a Raspberry Pi Pico, I benchmarked a modified version of adafruit_bitmap_font's pcf reader which uses readinto instead of the existing code. My test font was a 72-point file created from Arial. This decreased the time to load all the ASCII glyphs from 4.9 seconds to just 0.44 seconds. While this attempts to support many pixel configurations (1/2/4/8/16/24/32 bpp; swapped words and pixels) only the single combination used by PCF fonts was tested.
2021-03-14Change in documentation in Analogiojposada202020
2021-03-13Merge pull request #4395 from weblate/weblate-circuitpython-mainJeff Epler
Translations update from Weblate
2021-03-13Merge remote-tracking branch 'origin/main' into mainHosted Weblate
2021-03-13Merge pull request #4393 from tannewt/raise_default_flash_speedDan Halbert
Speed up a bit more
2021-03-13Merge remote-tracking branch 'origin/main' into mainHosted Weblate
2021-03-12Merge pull request #4391 from tyomitch/patch-1Scott Shawcroft
[vfs_fat_diskio] pdrv is not a drive number since f5f4cdae89
2021-03-13Update translation filesHosted Weblate
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: CircuitPython/main Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/
2021-03-12Merge pull request #4376 from kmatch98/displayio_bitmapScott Shawcroft
add fill_region and draw_line to bitmap_tools
2021-03-12Merge pull request #4262 from DavePutz/issue_4111Scott Shawcroft
Issue 4111 - Implement pulseio(pulsein) for RP2040
2021-03-12Speed up a bit moreScott Shawcroft
2021-03-12Added the correct filesDavePutz
2021-03-12Use StateMachine.c interrupt setup and simplify SM programDavePutz
2021-03-12Merge pull request #4392 from tannewt/lower_default_flash_speedJeff Epler
Lower default flash speed.
2021-03-12Lower default flash speed.Scott Shawcroft
/ 6 leads to ~40mhz. 2M and 4M have a max 0x03 read speed of 60mhz. If the divisor is / 4 then the speed is just over 60mhz. Fixes #4377