Hosted Weblate
5d8acca777
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/
2021-11-16 02:34:03 +01:00
Hosted Weblate
924769c2ee
Merge remote-tracking branch 'origin/main'
2021-11-16 02:34:00 +01:00
River Wang
1b20580640
Translated using Weblate (Chinese (Pinyin))
...
Currently translated at 99.4% (1016 of 1022 strings)
Translation: CircuitPython/main
Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/zh_Latn/
2021-11-16 02:34:00 +01:00
Dan Halbert
bd22667eb5
Merge pull request #5571 from anecdata/set_mac
...
Set Station MAC address & validate connect SSID len
2021-11-15 20:33:54 -05:00
Dan Halbert
41d4e5724e
Merge pull request #5589 from weblate/weblate-circuitpython-main
...
Translations update from Hosted Weblate
2021-11-15 20:25:29 -05:00
Dan Halbert
2e83e3053b
update frozen libraries, especially adafruit_hid
2021-11-15 19:18:56 -05:00
Pierre Constantineau
4f0fc1eb17
Merge branch 'adafruit:main' into board-pykey87
2021-11-15 16:45:15 -06:00
Hosted Weblate
59fb15f83f
Merge remote-tracking branch 'origin/main'
2021-11-15 19:57:31 +01:00
Scott Shawcroft
ba2f32e374
Merge pull request #5578 from jepler/disable-mkfs-fat32
...
oofatfs: Allow fat32 mkfs to be compiled out. optimize rainbowio & enable everywhere
2021-11-15 10:57:25 -08:00
Hosted Weblate
a957d8b000
Merge remote-tracking branch 'origin/main'
2021-11-15 19:23:04 +01:00
Scott Shawcroft
894adc78e9
Merge pull request #5580 from jepler/litex-prototypes
...
litex: Enable -Werror=missing-prototypes
2021-11-15 10:22:59 -08:00
Hosted Weblate
42c5e1a090
Merge remote-tracking branch 'origin/main'
2021-11-15 19:21:38 +01:00
River Wang
ca6dbf8fc9
Translated using Weblate (Chinese (Pinyin))
...
Currently translated at 99.6% (1018 of 1022 strings)
Translation: CircuitPython/main
Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/zh_Latn/
2021-11-15 19:21:38 +01:00
Wellington Terumi Uemura
c450fcd48d
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 100.0% (1022 of 1022 strings)
Translation: CircuitPython/main
Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/pt_BR/
2021-11-15 19:21:37 +01:00
Maxime Leroy
3ffd738461
Translated using Weblate (French)
...
Currently translated at 98.8% (1010 of 1022 strings)
Translation: CircuitPython/main
Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/fr/
2021-11-15 19:21:36 +01:00
Scott Shawcroft
ef2b6374b9
Merge pull request #5582 from jepler/mimxrt10xx-prototypes
...
Mimxrt10xx: enable -Werror=missing-prototypes
2021-11-15 10:21:30 -08:00
Scott Shawcroft
e1767bbe76
Added translation using Weblate (Russian)
2021-11-15 19:06:20 +01:00
microDev
7a89f62e6a
update translation
2021-11-15 20:58:50 +05:30
microDev
733bfbc10a
Merge branch 'main' into set_mac
2021-11-15 20:44:30 +05:30
microDev
18b3e6c4fc
Merge pull request #5585 from tekktrik/docfix/fix-shiftregisterkeys-doc
...
Fix ShiftRegisterKeys documentation
2021-11-15 20:12:20 +05:30
Pierre Constantineau
ce7cd22116
updated pins.c to enable support for PyKey87
2021-11-14 21:56:18 -06:00
Pierre Constantineau
2c3557d4af
Merge branch 'adafruit:main' into seeduino-xiao-rp2040
2021-11-14 21:44:10 -06:00
Alec Delaney
f25d30087c
Updated per pre-commit
2021-11-14 14:06:47 -05:00
Alec Delaney
6f17c4c4d1
Fix value_to_latch Sphinx param
2021-11-14 14:04:20 -05:00
Jeff Epler
edeb31f789
Fix remaining builds
2021-11-13 07:44:17 -06:00
iabdalkader
3745c393c8
rp2: Add support for Nina-W10 WiFi/BT module.
...
This commit integrates the Nina-W10 driver as an optional component in the
rp2 port.
2021-11-13 23:01:37 +11:00
iabdalkader
43079aaf86
drivers/ninaw10: Add ublox Nina-W10 WiFi/BT module driver.
...
- Add WiFi/BT drivers for ublox Nina-W10 (esp32 based) module.
- Add ublox Nina-W10 Python module in extmod.
2021-11-13 23:01:03 +11:00
Jeff Epler
59cb8e91b2
mimxrt1011: enable -Werror=missing-prototypes
2021-11-12 19:30:47 -06:00
Jeff Epler
535f4b3c54
mimxrt10xx: enable Werror
2021-11-12 19:30:43 -06:00
Mike Teachman
b6dbbbe82f
rp2/machine_i2s: Add I2S protocol support.
...
This commit adds I2S protocol support for the rp2 port:
- I2S API is consistent with STM32 and ESP32 ports
- I2S configurations supported:
- master transmit and master receive
- 16-bit and 32-bit sample sizes
- mono and stereo formats
- sampling frequency
- 3 modes of operation:
- blocking
- non-blocking with callback
- uasyncio
- internal ring buffer size can be tuned
- DMA IRQs are managed on an I2S object basis, allowing other
RP2 entities to use DMA IRQs when I2S is not being used
- MicroPython documentation
- tested on Raspberry Pi Pico development board
- build metric changes for this commit: text(+4552), data(0), bss(+8)
Signed-off-by: Mike Teachman <mike.teachman@gmail.com>
2021-11-13 12:27:42 +11:00
MikeTeachman
6d5296e65e
stm32,esp32: In machine_i2s, make object reference arrays root pointers.
...
This change eliminates the risk of the IRQ callback accessing invalid data.
Discussed here:
https://github.com/micropython/micropython/pull/7183#discussion_r660209875
Signed-off-by: Mike Teachman <mike.teachman@gmail.com>
2021-11-13 12:22:42 +11:00
Jeff Epler
ac978969f7
litex: Enable -Werror=missing-prototypes
2021-11-12 19:13:51 -06:00
Jeff Epler
1039e1116b
same54: Use the same optimization as other sam d5x/e5x
...
It's likely that this is a relic of my early testing.
2021-11-12 18:54:56 -06:00
Jeff Epler
edac675c48
rainbowio: optimize for code size
...
.. this saves 76 bytes on trinket_m0
2021-11-12 17:31:22 -06:00
Jeff Epler
9646d3f963
rainbowio: No need for the ternary here
...
.. mp_obj_get_float handles the case where the arg is an int already.
This saves 12 bytes of code size on trinket_m0.
2021-11-12 17:31:15 -06:00
Jeff Epler
d4dd06904a
add a test of rainbows
2021-11-12 17:31:14 -06:00
Jeff Epler
1cea871c70
enable rainbowio on unix coverage port
2021-11-12 17:31:14 -06:00
Jeff Epler
010a822b8c
tests: run circuitpython tests during make test
...
.. there are none that aren't skipped now, but it'll change
2021-11-12 17:31:14 -06:00
Jeff Epler
1c73e2e466
tests: Remove a non-useful test
2021-11-12 17:31:13 -06:00
Jeff Epler
c91901dc37
rainbowio: Fix some things the unix build errors about
2021-11-12 17:31:13 -06:00
Jeff Epler
dfef5014ed
enable rainbowio with newly free space
2021-11-12 17:31:12 -06:00
Jeff Epler
12c95ee9e9
oofatfs: Allow fat32 mkfs to be compiled out
...
Saves 508 bytes
2021-11-12 17:31:12 -06:00
anecdata
31d45a3f32
fix old bug that was masking new bug
2021-11-12 16:27:13 -06:00
Dan Halbert
b9ecb0fdb4
Merge pull request #5575 from jepler/bitmaptools-on-host
...
Enable bitmaptools on the 'unix' build, 'coverage' variant
2021-11-12 16:16:53 -05:00
Dan Halbert
28b5733bd8
Merge pull request #5576 from weblate/weblate-circuitpython-main
...
Translations update from Hosted Weblate
2021-11-12 15:33:53 -05:00
Jeff Epler
06bb6ea5a2
use MP_OBJ_NULL in preference to 0
2021-11-12 13:21:53 -06:00
Jeff Epler
6afe732151
changes in ports/unix don't trigger any board builds
2021-11-12 13:09:33 -06:00
River Wang
839db7791f
Translated using Weblate (Chinese (Pinyin))
...
Currently translated at 99.9% (1021 of 1022 strings)
Translation: CircuitPython/main
Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/zh_Latn/
2021-11-12 19:46:06 +01:00
Paul Leung
8871338f53
Translated using Weblate (Chinese (Pinyin))
...
Currently translated at 99.9% (1021 of 1022 strings)
Translation: CircuitPython/main
Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/zh_Latn/
2021-11-12 19:46:06 +01:00
Scott Shawcroft
1d76be2dbd
Merge pull request #5574 from microDev1/traceback
...
Fix traceback object init
2021-11-12 09:30:57 -08:00