Jeff Epler
18c659780e
ulab: update
...
.. add new modules and functions to our shared-bindings stubs
2020-06-01 09:02:29 -05:00
Jeff Epler
f211a090e2
py.mk: Assume we want all C source files in ulab
2020-06-01 08:26:23 -05:00
Jeff Epler
1cc281b6a4
py.mk: Assume we want all C files from ulab
2020-06-01 08:20:23 -05:00
Jeff Epler
47efd595fc
Merge pull request #2970 from weblate/weblate-circuitpython-master
...
Translations update from Weblate
2020-05-31 09:19:01 -05:00
_fonzlate
b354c9e2e8
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (748 of 748 strings)
Translation: CircuitPython/master
Translate-URL: https://hosted.weblate.org/projects/circuitpython/master/nl/
2020-05-31 13:41:40 +02:00
Jonny Bergdahl
a76447ea6c
Translated using Weblate (Swedish)
...
Currently translated at 100.0% (748 of 748 strings)
Translation: CircuitPython/master
Translate-URL: https://hosted.weblate.org/projects/circuitpython/master/sv/
2020-05-30 04:52:21 +02:00
Thomas Friehoff
1616f7cf95
Translated using Weblate (German)
...
Currently translated at 100.0% (748 of 748 strings)
Translation: CircuitPython/master
Translate-URL: https://hosted.weblate.org/projects/circuitpython/master/de/
2020-05-29 20:21:10 +02:00
Hosted Weblate
2303291f38
Update translation files
...
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: CircuitPython/master
Translate-URL: https://hosted.weblate.org/projects/circuitpython/master/
2020-05-29 20:21:10 +02:00
Jeff Epler
5cd6bb4d56
Merge pull request #2978 from tannewt/fix_merge_translate
...
Fix merge-translate by starting with 'theirs'
2020-05-29 13:21:04 -05:00
Dan Halbert
4667d4de8c
Merge pull request #2975 from dhalbert/aesio-nrf52840
...
enable aesio on all nRF52840 boards
2020-05-29 14:07:30 -04:00
Scott Shawcroft
ddcae19254
Merge pull request #2964 from hierophect/mimxrt-busio-cleanup
...
mimxrt10xx: Busio cleanup and bugfixes
2020-05-29 10:42:16 -07:00
Scott Shawcroft
0e6813d084
Fix merge-translate by starting with 'theirs'
2020-05-29 10:17:42 -07:00
Lucian Copeland
fe75c7793c
Fix SWO/Analog overlap, style changes
2020-05-29 12:19:37 -04:00
Dan Halbert
0d2fee95e2
enable aesio on all nRF52840 boards
2020-05-29 11:06:30 -04:00
Dan Halbert
7ea95457ee
Merge pull request #2974 from tannewt/esp32s2_spill
...
Spill registers before scanning the stack.
2020-05-28 22:10:46 -04:00
Dan Halbert
6ace4ee7e8
Merge pull request #2968 from jepler/more-efficient-translation
...
More efficient translation
2020-05-28 21:37:45 -04:00
Scott Shawcroft
2fb4fa3289
Spill registers before scanning the stack.
...
From the change:
// xtensa has more registers than an instruction can address. The 16 that
// can be addressed are called the "window". When a function is called or
// returns the window rotates. This allows for more efficient function calls
// because ram doesn't need to be used. It's only used if the window wraps
// around onto itself. At that point values are "spilled" to empty spots in
// the stack that were set aside. When the window rotates back around (on
// function return), the values are restored into the register from ram.
// So, in order to read the values in the stack scan we must make sure all
// of the register values we care about have been spilled to RAM. Luckily,
// there is a HAL call to do it. There is a bit of a race condition here
// because the register value could change after it's been restored but that
// is unlikely to happen with a heap pointer while we do a GC.
Fixes #2907
2020-05-28 18:34:14 -07:00
Dan Halbert
d98151a434
Merge pull request #2972 from tannewt/esp32s2_fixes1
...
A number of small ESP32S2 fixes
2020-05-28 19:25:53 -04:00
Scott Shawcroft
796373b8be
A number of small ESP32S2 fixes:
...
* Fix flash writes that don't end on a sector boundary. Fixes #2944
* Fix enum incompatibility with IDF.
* Fix printf output so it goes out debug UART.
* Increase stack size to 8k.
* Fix sleep of less than a tick so it doesn't crash.
2020-05-28 15:43:55 -07:00
Scott Shawcroft
a9419b5d46
Update ESP IDF
2020-05-28 15:38:48 -07:00
Scott Shawcroft
b901def8b3
Merge pull request #2967 from jepler/fix-translation-merge-error
...
locale: Restore translations lost in 357467022
2020-05-28 11:52:18 -07:00
Jeff Epler
d0f9b5901e
translations: document the compressed format
2020-05-28 11:30:46 -05:00
Lucian Copeland
9ee278d2ac
Merge remote-tracking branch 'upstream/master' into mimxrt-busio-cleanup
2020-05-28 12:24:37 -04:00
Lucian Copeland
fd00bb8b7f
Fix pin reset flash conflict error
2020-05-28 12:15:21 -04:00
Jeff Epler
fe3e8d1589
string compression: save a few bits per string
...
Length was stored as a 16-bit number always. Most translations have
a max length far less. For example, US English translation lengths
always fit in just 8 bits. probably all languages fit in 9 bits.
This also has the side effect of reducing the alignment of
compressed_string_t from 2 bytes to 1.
testing performed: ran in german and english on pyruler, printed messages
looked right.
Firmware size, en_US
Before: 3044 bytes free in flash
After: 3408 bytes free in flash
Firmware size, de_DE (with #2967 merged to restore translations)
Before: 1236 bytes free in flash
After: 1600 bytes free in flash
2020-05-28 08:36:08 -05:00
Jeff Epler
f3ac3ead8d
make translate
2020-05-27 20:52:07 -05:00
Jeff Epler
3ecd8cbd20
locale: Restore translations lost in 357467022
Merge pull request #2931 from tannewt/esp32s2_digitalio
2020-05-27 20:28:58 -05:00
sommersoft
f72d166e51
Merge pull request #2965 from jepler/sine-wave-examples
...
Various doc examples: Fix the "/ 18" copypasta bug
2020-05-27 20:24:36 -05:00
Jeff Epler
90571e7b7f
Various doc examples: Fix the "/ 18" copypasta bug
2020-05-27 16:43:35 -05:00
Scott Shawcroft
0db8b888d3
Merge pull request #2934 from hierophect/mimxrt-uart-oneway
...
mimxrt10xx: add one-directional UART
2020-05-27 10:38:00 -07:00
Scott Shawcroft
7cd92dd94c
Merge pull request #2899 from dherrada/extract-types
...
Added extract_types.py script
2020-05-27 10:35:53 -07:00
Dan Halbert
820d5092b3
Merge pull request #2963 from adafruit/hiibot-bluefi-pid-fix
...
Correct HiiBot BlueFi USB_PID
2020-05-27 12:49:45 -04:00
Lucian Copeland
a59798ed49
Merge branch 'mimxrt-uart-oneway' into mimxrt-busio-cleanup
2020-05-27 12:31:16 -04:00
Lucian Copeland
9a9cb2e7d3
fix submodule desync
2020-05-27 11:59:13 -04:00
Lucian Copeland
2f6e1d85d2
more translations
2020-05-27 11:55:33 -04:00
Lucian Copeland
9f5520135c
translations
2020-05-27 11:54:52 -04:00
Lucian Copeland
a25e10ed59
Merge branch 'mimxrt-uart-oneway' of https://github.com/hierophect/circuitpython into mimxrt-uart-oneway
2020-05-27 11:49:11 -04:00
Lucian Copeland
1e914ac2b0
Change exception text and type
2020-05-27 11:48:52 -04:00
Dan Halbert
d06a7c4671
Correct HiiBot BlueFi USB_PID
...
Donated a PID set for HiiBot BlueFi.
2020-05-27 11:47:15 -04:00
Lucian Copeland
53fb699436
Add pin resetting across boards, fix array size detection issue
2020-05-27 11:45:15 -04:00
dherrada
4e22b9a346
Better keyerror handling
2020-05-27 11:30:51 -04:00
arturo182
ad988013f0
Merge pull request #2961 from arturo182/i2c-exception
...
mimxrt10xx: Change exception type to match other ports
2020-05-27 11:24:46 +02:00
Jeff Epler
739b42e3e0
Merge pull request #2960 from weblate/weblate-circuitpython-master
...
Translations update from Weblate
2020-05-26 19:42:42 -05:00
Hosted Weblate
51edfb992a
Update translation files
...
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: CircuitPython/master
Translate-URL: https://hosted.weblate.org/projects/circuitpython/master/
2020-05-27 01:18:54 +02:00
Jeff Epler
d8608e5229
Translated using Weblate (French)
...
Currently translated at 100.0% (747 of 747 strings)
Translation: CircuitPython/master
Translate-URL: https://hosted.weblate.org/projects/circuitpython/master/fr/
2020-05-27 01:18:53 +02:00
Dan Halbert
3574670226
Merge pull request #2931 from tannewt/esp32s2_digitalio
...
Finish digitalio and pin use tracking for ESP32S2
2020-05-26 19:18:45 -04:00
Scott Shawcroft
c917270da7
Merge pull request #2956 from hathach/fix-samd-wfi
...
fix racing issue for SAMD when executing WFI
2020-05-26 14:54:24 -07:00
Scott Shawcroft
ffe0e0edc3
Merge pull request #2938 from DavePutz/issue2894
...
Add an increment to tcc_refcount to allow deinit to work correctly
2020-05-26 14:39:59 -07:00
Scott Shawcroft
f3e1c8fd36
Merge pull request #2954 from rhooper/pixelbuf_rgbw_fix
...
Allow setting RGBW pixels with RGB tuples
2020-05-26 13:38:09 -07:00
arturo182
d6c59c4de0
mimxrt10xx: Change exception type to match other ports
2020-05-26 22:36:30 +02:00