Dan Halbert
4d175ab41a
convert to MP_DEFINED_CONST_OBJ_TYPE()
2023-09-19 21:09:29 -04:00
Dan Halbert
2c0fa0f7dc
initial merge from v1.20.0; just satisifying conflicts
2023-09-19 11:10:12 -04:00
Dan Halbert
841ce0948c
Merge pull request #8308 from weblate/weblate-circuitpython-main
...
Translations update from Hosted Weblate
2023-08-21 23:48:53 -04:00
Hosted Weblate
3bcce61ccf
Merge remote-tracking branch 'origin/main'
2023-08-22 04:09:08 +02:00
Dan Halbert
6c4f2096b5
Merge pull request #8310 from jepler/fix-doc-build-119
...
Use a different way to force building sdkconfig early
2023-08-21 22:08:59 -04:00
Jeff Epler
3cd667a0a1
Ensure doc build is tested when a Makefile or .mk file is changed
...
This can affect whether the shared-bindings-matrix works, as in the
case of this PR.
2023-08-21 20:58:12 -05:00
Jeff Epler
d62bf6631b
Use a different way to force building sdkconfig early
...
the `Makefile:...` version broke the shared bindings matrix generation, as
it would fail if esp-idf wasn't in the environment (and we wouldn't want
it to do that much work anyway)
2023-08-21 20:48:42 -05:00
Hosted Weblate
0de6ced98a
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/
2023-08-22 01:24:50 +02:00
Dan Halbert
282e93d3e3
Merge pull request #8281 from dhalbert/merge-micropython-v1.19.1
...
Merge micropython v1.19.1
2023-08-21 19:24:26 -04:00
Jeff Epler
cb4d7822bf
support old names for push/pop methods in TaskQueue
...
.. and update asyncio to a version that uses the old names but has other
new asyncio improvements.
2023-08-21 15:44:26 -05:00
Jeff Epler
0cab3359df
ignore some cast-align diagnostics
2023-08-20 14:26:48 -05:00
Jeff Epler
1399d0f25b
guard mp_type_native_gen_wrap declaration with MICROPY_EMIT_NATIVE
2023-08-20 14:26:27 -05:00
Jeff Epler
f9e99bd3c3
Fix picow build
2023-08-20 11:30:36 -05:00
Jeff Epler
c122ca18fd
restore missing board.c file
2023-08-20 11:20:57 -05:00
Jeff Epler
bb8e0ae76e
turn off some modules to save flash space
2023-08-20 11:18:46 -05:00
Jeff Epler
d94ff9d1cf
turn off audiopwmio to save flash space
2023-08-20 11:14:41 -05:00
Jeff Epler
44c26d9d41
Ensure sdkconfig.h is built early, by making Makefile depend on it
...
Here's why this helps fix the build error:
If this file does not exist or is out of date, then it is generated
and then the Makefile is re-read.
I don't know why this worked before but stopped now; it must have
to do with the rework of header generation in the MP build system.
2023-08-20 11:08:43 -05:00
Jeff Epler
d5d566dc65
Don't assume __ICACHE_PRESENT is defined
...
This seems to only be defined in cmsis files for M7 family MCUs, so
it's not for e.g., makerdiary_m60_keyboard which enables loading of native
code. Lower MCUs don't ever have icache, so the default is "off".
2023-08-20 10:15:56 -05:00
Jeff Epler
e74ef8b960
ringbuf_alloc no longer has a long-lived argument
2023-08-20 10:15:56 -05:00
Jeff Epler
a3a9c7a098
fix typo
2023-08-20 10:15:55 -05:00
Jeff Epler
d9022343dc
Allow freezing 31-bit ints
2023-08-20 10:15:55 -05:00
Jeff Epler
d277294a14
Alias m_new_ll to m_new
...
this saves changing uses of it in ports/ and if we re-add ll later, it'll
make it easier to find the places that needed long-lived allocation.
2023-08-20 10:15:55 -05:00
Jeff Epler
d8484df075
basic async_with test passes under native code
2023-08-20 10:15:55 -05:00
Jeff Epler
7e38b79e21
Add mp_type_native_coro_wrap
2023-08-20 10:15:55 -05:00
Jeff Epler
562520e158
Skip these tests when using --emit native
...
.. in which case the __await__ attribute is not available due to
"CIRCUITPY: no support for mp_type_native_coro_wrap" (emitglue.c)
2023-08-20 08:02:31 -05:00
Dan Halbert
506dca71b0
Merge pull request #8300 from pypewpew/no-logo-fix
...
Fix displayio when CIRCUITPY_REPL_LOGO is disabled
2023-08-19 20:39:44 -04:00
Radomir Dopieralski
b93b1d0e75
Fix the SRC_SUPERVISOR setting check
2023-08-20 01:20:05 +02:00
Radomir Dopieralski
b50a7fb913
Fix displayio when CIRCUITPY_REPL_LOGO is disabled
...
We have to make room for the status bar no matter if the logo is enabled
or not. We probably should add a similar option for disabling the status
bar.
This makes the PewPew M4 port stop crashing.
2023-08-20 00:21:33 +02:00
Jeff Epler
b0bf36ef3b
Fix building with !MICROPY_PY_ASYNC_AWAIT
2023-08-19 17:17:50 -05:00
Jeff Epler
5606d49e4d
skip async_basic with native emitter, it doesn't work
2023-08-19 17:03:44 -05:00
Jeff Epler
a94301122a
Make natmods work again.
...
And put back our magic number, because our bytecode format differs
from upstream
drop btree & framebuf natmods, they had additional problems I didn't
want to fix right now.
2023-08-19 16:59:13 -05:00
Jeff Epler
6598fc0c42
pre-commit modifies these additional files on my system (WHY?)
2023-08-19 13:45:06 -05:00
Jeff Epler
412e242d28
Fix `mpy-cross -X native`
2023-08-19 13:44:13 -05:00
Dan Halbert
d35e4ffc39
Merge branch 'merge-micropython-v1.19.1' of https://github.com/dhalbert/circuitpython into merge-micropython-v1.19.1
2023-08-18 22:53:24 -04:00
Dan Halbert
e43c2fb7ba
pre-commit uncrustify
2023-08-18 22:53:14 -04:00
Dan Halbert
babd2dec45
Merge pull request #8296 from pypewpew/reset-cwd
...
Reset cwd before looking for files to run
2023-08-18 17:36:24 -04:00
Radomir Dopieralski
1a47c5f326
Reset cwd before looking for files to run
...
Make sure we only look for the files in the root directory.
2023-08-18 22:05:29 +02:00
Jeff Epler
a42e03c188
fetch additional submodules during testing
2023-08-18 13:02:43 -05:00
Jeff Epler
100de9e5b9
add a script to make it easy to endorse test output
...
Invoke it on the "out" file and it's moved to the correct "exp" file,
ready to git add & git commit.
2023-08-18 12:50:06 -05:00
Jeff Epler
ca057618ff
Skip the import_mpy_native_gc test, it is known to be broken
...
As CircuitPython does not ship any builds with native modules enabled,
this is not something to spend time on right now.
2023-08-18 12:50:05 -05:00
Jeff Epler
49159efe55
Allow natmods to build again (they don't work, however)
2023-08-18 12:50:05 -05:00
Jeff Epler
4a9632d154
update test result
2023-08-18 12:50:05 -05:00
Jeff Epler
73d231c54c
update invalid-mpy test and result
2023-08-18 12:50:05 -05:00
Jeff Epler
9c91448bc2
Re-add usercmodule sources & endorse new extra_coverage output
2023-08-18 12:50:03 -05:00
Dan Halbert
d9ed21ea07
pre-commit
2023-08-18 13:30:45 -04:00
Dan Halbert
6851faacaa
Merge remote-tracking branch 'adafruit/main' into merge-micropython-v1.19.1
2023-08-18 13:29:39 -04:00
Dan Halbert
bfccb77ec1
asyncio test fixes and asyncio library updates
2023-08-18 13:16:16 -04:00
Jeff Epler
d0f313c1e8
Merge pull request #8270 from makermelissa/better-alphablend
...
Better alphablend features
2023-08-16 17:43:17 -05:00
Dan Halbert
41ee1e0458
Merge pull request #8286 from kattni/metro-esp32-s3-sd-cs-pin
...
Add SD_CS pin to Metro ESP32-S3 board definition.
2023-08-15 22:25:20 -04:00
Kattni Rembor
3012c275e7
Add SD_CS pin.
2023-08-15 18:09:42 -04:00