Commit Graph

26763 Commits

Author SHA1 Message Date
Wellington Terumi Uemura c8bda89f68
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (1048 of 1048 strings)

Translation: CircuitPython/main
Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/pt_BR/
2022-02-15 19:42:05 +01:00
Scott Shawcroft feb653370e
Merge pull request #6032 from prplz/esp32-c3s-2m
Add AI thinker esp32c3s 2M
2022-02-15 10:41:58 -08:00
Jeff Epler 27f2c450ba fix finding the describe script during the doc build 2022-02-15 09:06:27 -06:00
Hosted Weblate 576830d5ac
Merge remote-tracking branch 'origin/main' 2022-02-15 04:38:29 +01:00
Jonny Bergdahl 8c2e3f9a89
Translated using Weblate (Swedish)
Currently translated at 100.0% (1048 of 1048 strings)

Translation: CircuitPython/main
Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/sv/
2022-02-15 04:38:29 +01:00
Dan Halbert 5a063c1a76
Merge pull request #6035 from FoamyGuy/bitmap_blit_type_error
bitmap.blit type checking and raise error
2022-02-14 22:38:22 -05:00
foamyguy dc01505cfc bitmap.blit type checking and raise error 2022-02-14 19:05:53 -06:00
Scott Shawcroft 65af10cd23
Tweak I2C and TFT power pin defaults
This should set the power to on by default without preventing the
user code from repeatedly using it.

Fixes #5903
2022-02-14 16:19:56 -08:00
Jeff Epler c4c7a6ff62 use describe program during building stubs
Closes: #5793
2022-02-14 17:01:07 -06:00
Michael Himing 11bbe48ede Espressif: add partitions-4MB-no-uf2 2022-02-15 08:42:15 +11:00
Michael Himing 90e94dc485 Make ai_thinker_esp32-c3s-2m .bin only 2022-02-15 08:41:42 +11:00
Michael Himing ca5095c94b Add AI thinker esp32c3s 2M 2022-02-15 07:00:38 +11:00
Hosted Weblate 54918e6bbc
Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.

Translation: CircuitPython/main
Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/
2022-02-14 19:08:53 +01:00
Hosted Weblate 1c168f3529
Merge remote-tracking branch 'origin/main' 2022-02-14 19:08:50 +01:00
Clay 7b12ce0973
Translated using Weblate (Russian)
Currently translated at 38.2% (400 of 1047 strings)

Translation: CircuitPython/main
Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/ru/
2022-02-14 19:08:50 +01:00
Scott Shawcroft d4c2ffea27
Merge pull request #6022 from anecdata/more_ap_connections
wifi.radio.start_ap() new kwarg: max_connections
2022-02-14 10:08:39 -08:00
anecdata 5742a12497 input validation consistent with esp-idf is moved to common-hal 2022-02-13 22:14:45 -06:00
Scott Shawcroft 59837fe24a
Merge pull request #6027 from EmergReanimator/stm-uart-fix
Stm uart fix
2022-02-13 18:42:28 -08:00
Scott Shawcroft fd4164f16d
Merge pull request #6021 from anecdata/more_sockets
Increase max LWIP sockets on ESP32-S3
2022-02-13 18:37:41 -08:00
Scott Shawcroft 306852d33f
Merge pull request #6020 from dhalbert/convert-release-notes-update
Fix and revise convert-release-notes.py
2022-02-13 18:36:30 -08:00
Jeff Epler a50b0580b0
Merge pull request #6026 from weblate/weblate-circuitpython-main
Translations update from Hosted Weblate
2022-02-13 11:45:01 -06:00
Jeff Epler adfa6ef019
Fix all natmod tests to run on x64
My testing sequence is

```
git clean -dxf examples
arch=x64; make -C examples/natmod/features1 ARCH=$arch && make -C examples/natmod/features2 ARCH=$arch && make -C examples/natmod/btree ARCH=$arch && make -C examples/natmod/framebuf ARCH=$arch && make -C examples/natmod/uheapq ARCH=$arch && make -C examples/natmod/urandom ARCH=$arch && make -C examples/natmod/ure ARCH=$arch && make -C examples/natmod/uzlib ARCH=$arch
(cd tests && ./run-natmodtests.py "$@" extmod/{btree*,framebuf*,uheapq*,ure*,uzlib*}.py)
```
2022-02-13 11:18:38 -06:00
EmergReanimator 4e0bd4a27f Fixed pre-commit script issues. 2022-02-13 08:46:24 +01:00
hexthat 8f45d6706e
Translated using Weblate (Chinese (Pinyin))
Currently translated at 99.1% (1038 of 1047 strings)

Translation: CircuitPython/main
Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/zh_Latn/
2022-02-13 01:57:47 +01:00
Limor "Ladyada" Fried 9ee9876526
Merge pull request #6023 from stonehippo/micromod-samd51-spi-fix
MicroMod SAMD51: Correct default MISO
2022-02-12 18:45:57 -05:00
anecdata 7884e73089 build-doc fix 2022-02-12 14:31:23 -06:00
anecdata b559a0ee2a new kwarg: wifi.radio.start_ap(max_connections=) 2022-02-12 13:34:57 -06:00
EmergReanimator 69aa0b4edb Fixed lost UART data.
Use non-blocking HAL call to allow reception of data over UART while
transmission is active.
2022-02-12 18:51:21 +01:00
George White f3b67cc104 MicroMod SAMD51: Correct default MISO 2022-02-12 17:49:50 +00:00
anecdata e4837a4a61 ESP32-S3 increase max sockets - issue #5915 (partial) 2022-02-11 16:00:45 -06:00
Dan Halbert cb80b01251 Fix and revise convert-release-notes.py 2022-02-11 16:21:20 -05:00
Scott Shawcroft ddac37add7
Merge pull request #6011 from tannewt/tannewt-patch-1
Explain read and write size to/from PIO FIFOs
2022-02-11 09:36:41 -08:00
Scott Shawcroft 34092437ec
Merge pull request #6016 from todbot/rainbowio-255p5-fix
fix #6015: rainbowio error for input > 255.0 < 256.0
2022-02-11 09:32:15 -08:00
Scott Shawcroft 160b1aa392
Merge pull request #6017 from weblate/weblate-circuitpython-main
Translations update from Hosted Weblate
2022-02-11 09:29:36 -08:00
Jonny Bergdahl cb8327d14c
Translated using Weblate (Swedish)
Currently translated at 100.0% (1047 of 1047 strings)

Translation: CircuitPython/main
Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/sv/
2022-02-11 11:58:58 +01:00
Wellington Terumi Uemura 45ac0fb111
Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (1047 of 1047 strings)

Translation: CircuitPython/main
Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/pt_BR/
2022-02-11 11:58:58 +01:00
Tod Kurt 98ff9957fc appease ci 2022-02-10 17:14:07 -08:00
Tod Kurt 17440ec10c fix #6015 2022-02-10 16:10:05 -08:00
Scott Shawcroft 8958e7ef08
Add S3 GATT client support
This allows you to connect to GATT services on the other device.
It also adds connection initiation (GAP central).

More progress on #5926
2022-02-10 11:31:57 -08:00
Scott Shawcroft 22928fec55
Explain read and write size to/from PIO FIFOs 2022-02-10 10:55:04 -08:00
Scott Shawcroft 5355092e4a
Merge pull request #6003 from dhalbert/spi-half-duplex-signature
add half_duplex to busio.SPI signature
2022-02-10 10:27:14 -08:00
Scott Shawcroft c9b494b79f
Merge pull request #6006 from DavePutz/issue_5980
Correct ping timeout for espressif
2022-02-10 10:18:14 -08:00
Scott Shawcroft 54589de15b
Merge pull request #6004 from dhalbert/samd-rtc-count-overflow
fetch RTC count more atomically
2022-02-10 10:16:57 -08:00
Dan Halbert c234d92bdc
Merge pull request #5989 from tekktrik/doc/update-ref-volt-desc
Expand AnalogIn.reference_voltage description
2022-02-09 18:13:59 -05:00
Dan Halbert c60e45c4e0
Merge pull request #6002 from CapableRobot/usbhub-defn-updates
Board definition updates for Capable Robot USB Hub
2022-02-09 17:51:21 -05:00
Dan Halbert 85d79f4a27
Merge pull request #6001 from weblate/weblate-circuitpython-main
Translations update from Hosted Weblate
2022-02-09 17:23:45 -05:00
root 6563f71545 Correct ping timeout for espressif 2022-02-09 15:58:25 -06:00
Dan Halbert b18b0fd5b9 fetch RTC count more atomically 2022-02-09 15:32:16 -05:00
Chris Osterwood 7247990c3e
Update pins.c
Fix typo
2022-02-09 14:26:20 -05:00
Dan Halbert c4e54ce671 add half_duplex to busio.SPI signature 2022-02-09 14:20:46 -05:00