Other Parts Discussed in Thread: UNIFLASH
Hello TI!
I am able to change default device role of CC3220SF (Station or Access Point) using Uniflash GUI.
Now I need to do the same on build server.
I have found document swru469h (chapter 7.1.10 Reconfigure Project).
I have changed shell script running on the build server by adding "reconfig.json":
...
# change default role to AP
project reconfig --name "$IMAGE_NAME" --file reconfig.json
# create SLI file
"./$IMAGE_CREATOR_BIN" project create_image --name "$IMAGE_NAME" --sli_file "$DIST_SLI_IMG"
reconfig.json content:
{
"SimpleLink":
{
"startRole": "Station"
}
}
I have tried "Access Point" instead of "Station" but I have Access point role all in both cases.
What I am doing wrong?
Jiří