14444 Commits (e18d3e0f76ecd2d51c9f86e1430fe86aae7b754b)
 

Author SHA1 Message Date
Dan Halbert e18d3e0f76 Merge branch 'master' into m4-network-ps2io 3 years ago
Dan Halbert 1a62a9cb17 remove network from kicksat_sprite 3 years ago
Dan Halbert 2e9aa38700 turn off network in pewpew_m4 3 years ago
Dan Halbert 1d411d2874 Merge remote-tracking branch 'adafruit/master' into testing-fixes 3 years ago
Dan Halbert 228a619af5 enable network, wiznet5k, and ps2io by default on M4 3 years ago
Dan Halbert c000567d88
Merge pull request #2313 from tannewt/fix_pairing
Re-add pairing support
3 years ago
Scott Shawcroft 46cc9b934b
Update translations 3 years ago
Scott Shawcroft 743bc829ab
Clean up debug changes 3 years ago
Scott Shawcroft e63796c7bc
Special exception message for when pairing prompt is ignored. 3 years ago
Scott Shawcroft 39f4046f70
Fix pairing when peripheral. Central untested. 3 years ago
Dan Halbert 2adecda5eb
Merge pull request #2311 from tannewt/redo_bleio_errors
Use BluetoothError in _bleio
3 years ago
Dan Halbert e06dc72359
Merge pull request #2307 from hierophect/stm32-spi-cleanup
STM32: SPI clock rate fix and cleanup
3 years ago
Scott Shawcroft 98e55eb577
Only add module when printing exception. 3 years ago
Hierophect a96317d566 requested style changes 3 years ago
Scott Shawcroft 521c7531bc
Improve printing to include _bleio. prefix for type. 3 years ago
Scott Shawcroft 5e857fdb67
Use BluetoothError in _bleio
This better differentiates errors than using OSError everywhere.
3 years ago
Scott Shawcroft 372f22c0b3
Merge pull request #1858 from rafa-gould/korean_trans
Created Korean Translations
3 years ago
Hierophect 3d1b6d9fc8 fix typo 3 years ago
Hierophect bd9893ab98 clean up SPI module readability 3 years ago
Hierophect 0b558e8714 fix error in SPI busclock selection 3 years ago
Jeff Epler eae201a6dd
Merge pull request #2305 from cbyr2401/master
removed Robo HAT MM1 M0 board.
3 years ago
cbyr2401 eb39fcc947
Merge pull request #1 from wallarug/patch-1
Removed robohatmm1_m0 from build.
3 years ago
wallarug 8d72233afd
Removed robohatmm1_m0 from build. 3 years ago
wallarug fce7b89087 removed Robo HAT MM1 M0 board. 3 years ago
Melissa LeBlanc-Williams 41fb6e7824
Merge pull request #2303 from makermelissa/master
Removing submodule that was accidentally stowed away in PR 2302
3 years ago
Melissa LeBlanc-Williams d763559120 Removing submodule that was accidentally stowed away in PR 2302 3 years ago
Melissa LeBlanc-Williams fde9dd539d
Merge pull request #2302 from makermelissa/master
Added Edgebadge alias build for Pybadge
3 years ago
Melissa LeBlanc-Williams fe6ec9a7d4 Added Edgebadge alias for Pybadge 3 years ago
Dan Halbert 1a22d8a0f2
Merge pull request #2291 from hierophect/stm32-neopixel
STM32: Neopixel support
3 years ago
Dan Halbert 41aa214589
Merge pull request #2300 from hierophect/stm32-urandom
STM32: implement OS urandom
3 years ago
Hierophect 4a25c2344e implement os urandom 3 years ago
Hierophect a4797327cd add microcontroller toggles for status LED 3 years ago
Dan Halbert 2da1b68956
Merge pull request #2296 from jepler/github-actions-forks
workflows: Don't try to upload when running in someone's fork
3 years ago
Dan Halbert 9000c88965
Merge pull request #2295 from jepler/make-translate-xargs
Makefile: Fix a problem where `xargs` invoked `xgettext` 2x
3 years ago
Jeff Epler 37fd08e637 workflows: Don't try to upload when running in someone's fork
.. which we can tell by whether the environment variable is non-empty
3 years ago
Jeff Epler 8e9ac59396 Makefile: Fix a problem where `xargs` invoked `xgettext` 2x
On a Debian 10 system, the number of arguments to xargs was such that
it would not fit in a single invocation (xargs --show-limits prints
"bytes: Size of command buffer we are actually using: 131072").

In this situation, the output from the second invocation of xgettext
would replace the output of the first one, so messages that appeared only
in files early in the list would be lost.  Strings in "extmod" were most
frequently the victim, including "incorrect padding" from modubinascii.c.

Unfortunately, when the github environment was similar enough to the
environment where "make translate" was invoked, the problem was not
found by "check-translate", because the same (incorrect, truncated)
potfile would be generated on both systems.  Apparently Ubuntu and Debian
were different enough that the problem could become visible.

xgettext has a mode where it reads files from stdin ('-f-'), but this does
not have a zero-delimited variant documented.  Still, we will assume
that files with adversarial names are not committed to circuitpython
or created by the build process, and print newline-delimited filenames
from `find` to be processed by `xgettext -f-`.
3 years ago
Jeff Epler 900e365f93 locale: Re-run "make translate" subsequent to the xargs/xgettext fix
I manually inspected the changes relative to 5.0.0-alpha.5-93-g8778f367e
and believe they are innocuous; Besides restoring some translations
that had become fuzzy, "c-format" was removed from many (all?) fuzzy
messages, and the word-wrapping of one message was changed.
3 years ago
Jeff Epler 6700a58a17 Makefile: Fix a problem where `xargs` invoked `xgettext` 2x
On a Debian 10 system, the number of arguments to xargs was such that
it would not fit in a single invocation (xargs --show-limits prints
"bytes: Size of command buffer we are actually using: 131072").

In this situation, the output from the second invocation of xgettext
would replace the output of the first one, so messages that appeared only
in files early in the list would be lost.  Strings in "extmod" were most
frequently the victim, including "incorrect padding" from modubinascii.c.

Unfortunately, when the github environment was similar enough to the
environment where "make translate" was invoked, the problem was not
found by "check-translate", because the same (incorrect, truncated)
potfile would be generated on both systems.  Apparently Ubuntu and Debian
were different enough that the problem could become visible.

xgettext has a mode where it reads files from stdin ('-f-'), but this does
not have a zero-delimited variant documented.  Still, we will assume
that files with adversarial names are not committed to circuitpython
or created by the build process, and print newline-delimited filenames
from `find` to be processed by `xgettext -f-`.
3 years ago
Jeff Epler c449748663 locale: commit results of running "make translate" 3 years ago
Jeff Epler 25273f9e87 Merge remote-tracking branch 'origin/master' into korean_trans 3 years ago
Limor "Ladyada" Fried 8778f367e8
Merge pull request #2293 from CedarGroveStudios/patch-1
Add a USB interface description for StringCar M0 Express
3 years ago
Cedar Grove Maker Studios e7df288a34
add USB interface description
... to "StringCarM0Ex"
3 years ago
Hierophect 51078cc38f timing tweaks with testing 3 years ago
Dan Halbert 5d9ac8b1d9
Merge pull request #2290 from hierophect/pin-commonhal-additions
Add pin reset and never reset to common-hal
3 years ago
Hierophect 98fd372d5b Add missing define 3 years ago
Hierophect ee1559b921 Merge branch 'pin-commonhal-additions' into stm32-neopixel 3 years ago
Hierophect 81223c76bd revert error 3 years ago
Hierophect 5f290d091e Merge branch 'pin-commonhal-additions' into stm32-neopixel 3 years ago
Hierophect 2c6781f74d move neopixel_in_use flag to shared-bindings 3 years ago
Hierophect 8a58af3e96 Merge branch 'pin-commonhal-additions' into stm32-neopixel 3 years ago