Merge branch 'main' into tile_palette_mapper_color_converter · csamuelson/circuitpython@afb153e · GitHub
Skip to content

Commit afb153e

Browse files
committed
Merge branch 'main' into tile_palette_mapper_color_converter
2 parents 9b89ee8 + a0b482c commit afb153e

129 files changed

Lines changed: 2567 additions & 1069 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/build-board-custom.yml

Lines changed: 10 additions & 3 deletions

.gitmodules

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -345,8 +345,8 @@
345345
url = https://github.com/adafruit/Adafruit_CircuitPython_Wave.git
346346
[submodule "ports/raspberrypi/lib/Pico-PIO-USB"]
347347
path = ports/raspberrypi/lib/Pico-PIO-USB
348-
url = https://github.com/tannewt/Pico-PIO-USB.git
349-
branch = better_timeouts
348+
url = https://github.com/adafruit/Pico-PIO-USB.git
349+
branch = main
350350
[submodule "lib/micropython-lib"]
351351
path = lib/micropython-lib
352352
url = https://github.com/micropython/micropython-lib.git

docs/environment.rst

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,9 +158,13 @@ Selects the desired resolution and color depth.
158158

159159
Supported resolutions are:
160160
* 640x480 with color depth 1, 2, 4 or 8 bits per pixel
161-
* 320x240 with color depth 8 or 16 bits per pixel
161+
* 320x240 with pixel doubling and color depth 8, 16, or 32 bits per pixel
162+
* 360x200 with pixel doubling and color depth 8, 16, or 32 bits per pixel
162163

163-
The default value, if unspecified, is 320x240 with 16 bits per pixel.
164+
See :py:class:`picodvi.Framebuffer` for more details.
165+
166+
The default value, if unspecified, is 360x200 16 bits per pixel if the connected
167+
display is 1920x1080 or a multiple of it, otherwise 320x240 with 16 bits per pixel.
164168

165169
If height is unspecified, it is set from the width. For example, a width of 640
166170
implies a height of 480.

docs/shared_bindings_matrix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ def support_matrix(arg):
362362
if use_branded_name:
363363
board_name = branded_name
364364
else:
365-
board_name = board_directory.name
365+
board_name = board_id
366366

367367
if add_chips:
368368
with open(board_directory / "mpconfigboard.h") as get_name:

extmod/vfs.h

Lines changed: 4 additions & 0 deletions

0 commit comments

Comments
 (0)