Merge pull request #5069 from kamtom480/sdk2.2.0

spresense: update SDK to 2.2.0
This commit is contained in:
Dan Halbert 2021-07-27 10:15:51 -04:00 committed by GitHub
commit 297919bbdd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 4 deletions

@ -1 +1 @@
Subproject commit 2ec2a1538362696118dc3fdf56f33dacaf8f4067
Subproject commit b575f1c48afb5acca27a1281a9036287cf3d2868

View File

@ -16,7 +16,7 @@ cpp-coveralls
Sphinx<4
sphinx-rtd-theme
myst-parser
sphinx-autoapi
sphinx-autoapi<=1.8.1
sphinxcontrib-svg2pdfconverter
readthedocs-sphinx-search

View File

@ -70,10 +70,12 @@ def configboard_files():
"""A pathlib glob search for all ports/*/boards/*/mpconfigboard.mk file
paths.
:returns: A ``pathlib.Path.glob()`` genarator object
:returns: A ``pathlib.Path.glob()`` generator object
"""
working_dir = pathlib.Path().resolve()
if not working_dir.name.startswith("circuitpython"):
if not working_dir.name.startswith("circuitpython") and not working_dir.name.startswith(
"micropython"
):
raise RuntimeError(
"Please run USB VID/PID duplicate verification at the " "top-level directory."
)