Skip to content

Commit 297919b

Browse files
authored
Merge pull request #5069 from kamtom480/sdk2.2.0
spresense: update SDK to 2.2.0
2 parents 8258f51 + a974a2d commit 297919b

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

ports/cxd56/spresense-exported-sdk

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ cpp-coveralls
1616
Sphinx<4
1717
sphinx-rtd-theme
1818
myst-parser
19-
sphinx-autoapi
19+
sphinx-autoapi<=1.8.1
2020
sphinxcontrib-svg2pdfconverter
2121
readthedocs-sphinx-search
2222

tools/ci_check_duplicate_usb_vid_pid.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,12 @@ def configboard_files():
7070
"""A pathlib glob search for all ports/*/boards/*/mpconfigboard.mk file
7171
paths.
7272
73-
:returns: A ``pathlib.Path.glob()`` genarator object
73+
:returns: A ``pathlib.Path.glob()`` generator object
7474
"""
7575
working_dir = pathlib.Path().resolve()
76-
if not working_dir.name.startswith("circuitpython"):
76+
if not working_dir.name.startswith("circuitpython") and not working_dir.name.startswith(
77+
"micropython"
78+
):
7779
raise RuntimeError(
7880
"Please run USB VID/PID duplicate verification at the " "top-level directory."
7981
)

0 commit comments

Comments
 (0)