Dan Halbert
7029783985
funhouse board
2021-03-08 21:24:28 -05:00
Jeff Epler
88542e1826
Merge pull request #4355 from weblate/weblate-circuitpython-main
...
Translations update from Weblate
2021-03-08 09:36:53 -06:00
Hosted Weblate
069cf60138
Merge remote-tracking branch 'origin/main' into main
2021-03-08 14:02:52 +01:00
Jeff Epler
16f82b9797
Merge pull request #4358 from jepler/count-flash-devices
...
Automatically count EXTERNAL_FLASH_DEVICES
2021-03-07 21:20:18 -06:00
Jeff Epler
cdb0fda72a
Merge remote-tracking branch 'origin/main' into count-flash-devices
2021-03-07 20:26:04 -06:00
Hosted Weblate
b77d0e5736
Merge remote-tracking branch 'origin/main' into main
2021-03-07 22:16:33 +01:00
Jeff Epler
7ab75fa398
Merge pull request #4356 from jerryneedell/jerryn_blackpill_flash
...
add GD25Q16C flash to BlackPill
2021-03-07 15:16:29 -06:00
Hosted Weblate
e1f8b8a5b8
Merge remote-tracking branch 'origin/main' into main
2021-03-07 21:55:52 +01:00
Jeff Epler
8f64aae9ca
Merge pull request #4357 from kmatch98/displayio_bitmap
...
refactor displayio set_pixel for use in bitmap_tools
2021-03-07 14:55:48 -06:00
Jeff Epler
32475ce98c
Automatically count EXTERNAL_FLASH_DEVICES (mk2)
...
Instead of counting words in make, which is slightly awful, notice that
possible_devices is local to external_flash.c, so we can declare the array
with an automatic bound, and then get the count as the element-count
(MP_ARRAY_SIZE) of the array.
Since EXTERNAL_FLASH_DEVICE_COUNT is no longer a global macro, switch
a few sites to using EXTERNAL_FLASH_DEVICES in `#if` checks instead.
2021-03-07 12:51:47 -06:00
Jeff Epler
f1ada8e880
Automatically count EXTERNAL_FLASH_DEVICES
2021-03-07 11:48:39 -06:00
Hosted Weblate
804ab4c1d6
Merge remote-tracking branch 'origin/main' into main
2021-03-07 18:41:29 +01:00
Jeff Epler
103632f444
Merge pull request #4351 from tyomitch/patch-2
...
[readme] minor clarification / deduplication
2021-03-07 11:41:25 -06:00
jerryneedell
a23129bc49
add GD25Q16C flash to BlackPill
2021-03-07 17:23:39 +00:00
Kevin Matocha
0c012da080
refactor displayio set_pixel for use in bitmap_tools
2021-03-07 11:22:30 -06:00
Hosted Weblate
baeb3e91a6
Merge remote-tracking branch 'origin/main' into main
2021-03-07 17:09:58 +01:00
Jeff Epler
a4133c4545
Merge pull request #4344 from jepler/vm-size-optimizations
...
Vm size optimizations: Get back 1500 bytes for 3.2% VM speed decrease
2021-03-07 10:09:51 -06:00
Jose David M
1c2a1a672f
Translated using Weblate (Spanish)
...
Currently translated at 100.0% (974 of 974 strings)
Translation: CircuitPython/main
Translate-URL: https://hosted.weblate.org/projects/circuitpython/main/es/
2021-03-07 16:50:47 +01:00
Artyom Skrobov
1d33353ed3
[readme] minor clarification / deduplication
2021-03-07 09:19:49 +02:00
Jeff Epler
08e1f926fe
Merge pull request #4346 from jepler/fix-nvm-doc
...
nvm: fix doc markup
2021-03-06 13:32:09 -06:00
Jeff Epler
b23c5b2d68
nvm: fix doc markup
...
closes #4336
2021-03-06 07:54:54 -06:00
Jeff Epler
4f040af481
vm: Make the speed-size trade-off compile time settable
...
.. and enable for all samd21 boards
2021-03-05 18:29:27 -06:00
Jeff Epler
67fb3054b4
Merge pull request #4342 from jamesbowman/main
...
Enable EVE low-level for Teensy 4.0 and 4.1
2021-03-05 17:25:00 -06:00
Jeff Epler
7b359d7a8a
vm: Consolodate all dispatch instructions
...
Flash savings: 1268 bytes
Performance: 10,000 iteration loop .665 -> .676s (+1.7%)
2021-03-05 16:52:35 -06:00
Jeff Epler
28638df589
vm: cut vmentrytable size
...
This also adds a bit of code everywhere we DISPATCH(), but the net is
+232 bytes free on Feather M0 Adalogger.
Key assumption: All of the offsets in mp_execute_bytecode fit in 16 bits;
it is not clear whether the compiler will verify this assumption (e.g.,
by warning that a constant will be truncated)
2021-03-05 16:52:35 -06:00
Jeff Epler
d2056a46ee
Merge pull request #4335 from tyomitch/main
...
[nrf] No need to store `buffer_length` as part of `audiopwmio_pwmaudioout_obj_t`
2021-03-05 15:54:10 -06:00
Jeff Epler
bed96a98d2
Merge pull request #4337 from tyomitch/patch-1
...
[stm] `curr_pulseout` can be `STATIC`
2021-03-05 15:53:31 -06:00
Jeff Epler
2881699cf9
Merge pull request #4338 from tyomitch/patch-2
...
[audiocore] `buffer_read` was never used
2021-03-05 15:52:39 -06:00
Dan Halbert
dfcc9c6d8b
Merge pull request #4340 from jepler/fix-ci-failure-info
...
build.yml: Fix 'Print failure info' to not error
2021-03-05 15:00:50 -05:00
James Bowman
bff585ffd2
Enable EVE low-level for Teensy 4.0 and 4.1
2021-03-05 11:32:58 -08:00
Jeff Epler
f7e42bfebc
build.yml: Fix 'Print failure info' to not error
...
Print Failure Info is for printing differences detected by 'Test all'. When some other step fails, then "*.exp" doesn't match any files at all, and _this_ step fails too.
We will assume that Github Actions always runs with bash as the shell (as it does today). In this case, we can set the "nullglob" shell option, so that a non-existent glob expands to nothing, instead of to itself.
2021-03-05 12:50:15 -06:00
Jeff Epler
3c50918adc
Merge pull request #4333 from dhalbert/compile-options-shrink-builds
...
Shrink the smallest builds with compile options
2021-03-05 10:36:41 -06:00
Artyom Skrobov
915a5eddeb
[audiocore] buffer_read
was never used
2021-03-05 10:25:09 -05:00
Dan Halbert
4cf6579e22
remove general changes; not consistent across builds
2021-03-05 10:10:50 -05:00
Artyom Skrobov
e0b96c0f43
[nrf] No need to store buffer_length
as part of audiopwmio_pwmaudioout_obj_t
2021-03-05 06:01:58 -05:00
Artyom Skrobov
4720dc179a
[stm] curr_pulseout
can be STATIC
...
Not used outside of PulseOut.c
2021-03-05 12:52:13 +02:00
Dan Halbert
c97721455a
Shrink the smallest builds with compile options
2021-03-04 23:07:06 -05:00
Dan Halbert
c68073e12b
Merge pull request #4331 from dhalbert/tilegrid-transpose-fix
...
Tilegrid transpose fix
2021-03-04 21:53:21 -05:00
Dan Halbert
b1268107af
change esp build cache key (again)
2021-03-04 15:22:56 -05:00
Dan Halbert
68552e90e8
Merge remote-tracking branch 'adafruit/main' into tilegrid-transpose-fix
2021-03-04 15:04:38 -05:00
Dan Halbert
d1184e7e94
Be cognizant of null transform for .transpose_xy
2021-03-04 14:40:50 -05:00
Scott Shawcroft
7970c882a6
Merge pull request #4316 from microDev1/issue-template
...
Add issue templates
2021-03-04 10:16:09 -08:00
Scott Shawcroft
3698d4bc5d
Merge pull request #4287 from pewpew-game/displayio-transpose-uint
...
Use uint16 for temporary variables in displayio.TileGrid
2021-03-04 10:01:07 -08:00
Dan Halbert
2ae8a44b2a
Merge pull request #4325 from microDev1/fix-wdt
...
ESP32S2: Fix watchdog deinit
2021-03-04 11:04:01 -05:00
Dan Halbert
627c5f5bd4
Merge pull request #4327 from hathach/fix-4066-rp2040-hanged-tud_disconnect
...
fix rp2040 use of tud_disconnect
2021-03-04 10:50:26 -05:00
hathach
c26120a3ac
update tinyusb
2021-03-04 21:29:04 +07:00
hathach
6f99026a64
rp2040 use normal usb_irq_handler()
2021-03-04 21:29:04 +07:00
microDev
13453d35c6
fix watchdog deinit
2021-03-04 13:23:34 +05:30
Dan Halbert
dca2989df8
Merge pull request #4317 from weblate/weblate-circuitpython-main
...
Translations update from Weblate
2021-03-03 20:19:24 -05:00
Hosted Weblate
cca7679146
Merge remote-tracking branch 'origin/main' into main
2021-03-04 00:55:58 +01:00