Skip to content

Commit 13bb801

Browse files
committed
Fix docs and windows
1 parent 66edcf5 commit 13bb801

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

ports/raspberrypi/bindings/picodvi/Framebuffer.c

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,9 @@
6262
//| for the changed clock. This also allocates a very large framebuffer
6363
//| and is most likely to succeed the earlier it is attempted.
6464
//|
65-
//| Each *_dp and *_dn pair of pins must be neighboring, such as 19 and
66-
//| 20. They must also be ordered the same way. In other words, dp must
67-
//| be less than dn for all pairs or dp must be greater than dn for all
68-
//| pairs.
65+
//| Each dp and dn pair of pins must be neighboring, such as 19 and 20.
66+
//| They must also be ordered the same way. In other words, dp must be
67+
//| less than dn for all pairs or dp must be greater than dn for all pairs.
6968
//|
7069
//| The framebuffer pixel format varies depending on color_depth:
7170
//| * 1 - Each bit is a pixel. Either white (1) or black (0).

tools/ci_fetch_deps.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,10 @@ def main():
8787
submodules = ["tools/"] # for huffman
8888
elif TARGET == "windows":
8989
# This builds one board from a number of ports so fill out a bunch of submodules
90-
submodules = ["extmod/ulab", "lib/", "tools/", "ports/", "data/nvm.toml"]
90+
for port in ("atmel-samd", "nrf", "raspberrypi", "stm"):
91+
submodules.extend(PORT_DEPS[port])
92+
unique_submodules = set(submodules)
93+
submodules = list(unique_submodules)
9194
elif TARGET == "website":
9295
submodules = ["tools/adabot/"]
9396
submodules_tags = ["frozen/"]

0 commit comments

Comments
 (0)