Fix docs and windows

This commit is contained in:
Scott Shawcroft 2023-04-19 15:42:02 -07:00
parent 66edcf5d03
commit 13bb801211
No known key found for this signature in database
GPG Key ID: 0DFD512649C052DA
2 changed files with 7 additions and 5 deletions

View File

@ -62,10 +62,9 @@
//| for the changed clock. This also allocates a very large framebuffer
//| and is most likely to succeed the earlier it is attempted.
//|
//| Each *_dp and *_dn pair of pins must be neighboring, such as 19 and
//| 20. They must also be ordered the same way. In other words, dp must
//| be less than dn for all pairs or dp must be greater than dn for all
//| pairs.
//| Each dp and dn pair of pins must be neighboring, such as 19 and 20.
//| They must also be ordered the same way. In other words, dp must be
//| less than dn for all pairs or dp must be greater than dn for all pairs.
//|
//| The framebuffer pixel format varies depending on color_depth:
//| * 1 - Each bit is a pixel. Either white (1) or black (0).

View File

@ -87,7 +87,10 @@ def main():
submodules = ["tools/"] # for huffman
elif TARGET == "windows":
# This builds one board from a number of ports so fill out a bunch of submodules
submodules = ["extmod/ulab", "lib/", "tools/", "ports/", "data/nvm.toml"]
for port in ("atmel-samd", "nrf", "raspberrypi", "stm"):
submodules.extend(PORT_DEPS[port])
unique_submodules = set(submodules)
submodules = list(unique_submodules)
elif TARGET == "website":
submodules = ["tools/adabot/"]
submodules_tags = ["frozen/"]