so I have downloaded the new sdk/toolkit. for use under Visual Studio code
I want to extend an existing board, so I can’t figure that out
I copied an existing board to a new folder, and
all the readme tasks are done, python, gcc, cmake, …
I had to manually install the gcc arm compiler, as the linux version doesn’t run on mac.
I run the build process check configuration and get the right info
*** CURRENT CONFIGURATION: BUILD=UCI BOARD=Type2AB_EVB_Bonded CPU=nrf52840 ***
but the CreateTarget.py doesn’t seem to do anything..
as the BuildOutput folder isn’t created.
when I try to build I get this
* Executing task in folder Type2AB_EVB_Bonded: make all V=1 -j
make: *** No rule to make target `all'. Stop.
so I’m stuck at this point
I manually changed the file to get to the new board, as there isn’t doc on making a board and adding it to the file tree.
ctrl-shit-B doesn’t have select configuration
also, check config reports errors
Error: the task '_force create target' neither specifies a command nor a dependsOn property. The task will be ignored. Its definition is:
{
"label": "_force create target",
"type": "shell",
"group": {
"kind": "build"
},
"windows": {
"command": "python ${workspaceRoot}/Projects/DW3_QM33_SDK/FreeRTOS/${input:boardConfig}/CreateTarget.py ${input:buildConfig}"
},
"linux": {
"command": "python3 ${workspaceRoot}/Projects/DW3_QM33_SDK/FreeRTOS/${input:boardConfig}/CreateTarget.py ${input:buildConfig}"
},
"hide": true,
"presentation": {
"group": "build",
"clear": true
}
}
but like launch, doesn’t have a macos option.