You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser.add_option('-d', '--dev', dest='dev', action="store_true", help='enable developer mode (does not use target-locked.json)', default=False)
There is also another way to "enable developer mode" by setting the "target.dev": true key in codal.json. This mode is processed in the CMake files and it read target-locked.json instead of target.json from codal-microbit-v2:
Looking at build.py, the dev flag is described as "enable developer mode (does not use target-locked.json)":
microbit-v2-samples/build.py
Line 46 in 1a3d477
There is also another way to "enable developer mode" by setting the
"target.dev": true
key in codal.json. This mode is processed in the CMake files and it read target-locked.json instead of target.json from codal-microbit-v2:microbit-v2-samples/CMakeLists.txt
Lines 67 to 73 in 1a3d477
The build.py
--dev
flag it's only used:--update
flag is used to update (git pull) the libraries:--dev
flag does not quite applypython build.py codal-microbit --dev
)With the normal
python build.py
invocation with the--dev
flag does not do anything at all, which is also a bit confusing.The text was updated successfully, but these errors were encountered: