Other Parts Discussed in Thread: Z-STACK, CC1352P, CCSTUDIO, SYSCONFIG
Tool/software:
Hey All,
I'm trying to automate my project. Specifically Koenkk's Z-Stack builds.
What I have so far, is installed CCS and the SDK, and generate the workspace from examples. e.g.
```console
eclipse -noSplash -data "/build/workspace" -application com.ti.ccstudio.apps.projectImport -ccs.location "${HOME}/examples/rtos/CC1352P_2_LAUNCHXL/zstack/znp/tirtos7/ticlang/znp_CC1352P_2_LAUNCHXL_tirtos7_ticlang.projectspec"
```
This works great, however if I look at the generated/included `znp.syscfg` it doesn't even come close to what Koenkk has in his patches. Turns out, what he does, is open eclipse, open the `znp.syscfg` in the GUI sysconfig editor, and modifies a random value, to trigger a change in sysconfig. Uppon saving, I now get "properly' generated znp.syscfg (which is much shorter for example).
Once this step is done, I'd like to (also, but maybe this happens to also work by just adding a value) add a configuration open via syscfg. e.g. `CCFG.enableDCDC = false;` using `sysconfig_cli.sh`
Is this possible at all? How can I achieve any of this.
Thank you.