Skip to content

Commit 400d860

Browse files
committed
updated sysconfig version from 1.16.2 to 1.18.1
1 parent e2ea7d7 commit 400d860

File tree

30 files changed

+83
-113
lines changed

30 files changed

+83
-113
lines changed

examples/all-clusters-app/cc13x2x7_26x2x7/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ guide assumes that the environment is linux based, and recommends Ubuntu 20.04.
6868

6969
```
7070
$ cd ~
71-
$ wget https://dr-download.ti.com/software-development/ide-configuration-compiler-or-debugger/MD-nsUM6f7Vvb/1.16.2.3028/sysconfig-1.16.2_3028-setup.run
72-
$ chmod +x sysconfig-1.16.2_3028-setup.run
73-
$ ./sysconfig-1.16.2_3028-setup.run
71+
$ wget https://dr-download.ti.com/software-development/ide-configuration-compiler-or-debugger/MD-nsUM6f7Vvb/1.18.1.3343/sysconfig-1.18.1_3343-setup.run
72+
$ chmod +x sysconfig-1.18.1_3343-setup.run
73+
$ ./sysconfig-1.18.1_3343-setup.run
7474
```
7575
7676
- Run the bootstrap script to setup the build environment.
@@ -97,13 +97,13 @@ Ninja to build the executable.
9797
- Run the build to produce a default executable. By default on Linux both the
9898
TI SimpleLink SDK and Sysconfig are located in a `ti` folder in the user's
9999
home directory, and you must provide the absolute path to them. For example
100-
`/home/username/ti/sysconfig_1.16.2`. On Windows the default directory is
100+
`/home/username/ti/sysconfig_1.18.1`. On Windows the default directory is
101101
`C:\ti`. Take note of this install path, as it will be used in the next
102102
step.
103103
104104
```
105105
$ cd ~/connectedhomeip/examples/all-clusters-app/cc13x2x7_26x2x7
106-
$ gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.16.2\""
106+
$ gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.18.1\""
107107
$ ninja -C out/debug
108108
109109
```

examples/all-clusters-app/cc13x2x7_26x2x7/chip.syscfg

-2
Original file line numberDiff line numberDiff line change
@@ -118,14 +118,12 @@ LED1.$name = "CONFIG_LED_RED";
118118
LED1.$hardware = system.deviceData.board.components.LED_RED;
119119
LED1.gpioPin.$name = "CONFIG_GPIO_RLED";
120120
LED1.gpioPin.mode = "Output";
121-
LED1.gpioPin.callbackFunction = "";
122121

123122
/* Green LED */
124123
LED2.$name = "CONFIG_LED_GREEN";
125124
LED2.$hardware = system.deviceData.board.components.LED_GREEN;
126125
LED2.gpioPin.$name = "CONFIG_GPIO_GLED";
127126
LED2.gpioPin.mode = "Output";
128-
LED2.gpioPin.callbackFunction = "";
129127

130128
/* Debug UART */
131129
UART1.$hardware = system.deviceData.board.components.XDS110UART;

examples/all-clusters-app/cc13x4_26x4/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ guide assumes that the environment is linux based, and recommends Ubuntu 20.04.
5959

6060
```
6161
$ cd ~
62-
$ `wget https://dr-download.ti.com/software-development/ide-configuration-compiler-or-debugger/MD-nsUM6f7Vvb/1.16.2.3028/sysconfig-1.16.2_3028-setup.run`
63-
$ chmod +x sysconfig-1.16.2_3028-setup.run
64-
$ ./sysconfig-1.16.2_3028-setup.run
62+
$ wget https://dr-download.ti.com/software-development/ide-configuration-compiler-or-debugger/MD-nsUM6f7Vvb/1.18.1.3343/sysconfig-1.18.1_3343-setup.run
63+
$ chmod +x sysconfig-1.18.1_3343-setup.run
64+
$ ./sysconfig-1.18.1_3343-setup.run
6565
```
6666
6767
- Run the bootstrap script to setup the build environment.
@@ -88,15 +88,15 @@ Ninja to build the executable.
8888
- Run the build to produce a default executable. By default on Linux both the
8989
TI SimpleLink SDK and Sysconfig are located in a `ti` folder in the user's
9090
home directory, and you must provide the absolute path to them. For example
91-
`/home/username/ti/sysconfig_1.16.2`. On Windows the default directory is
91+
`/home/username/ti/sysconfig_1.18.1`. On Windows the default directory is
9292
`C:\ti`. Take note of this install path, as it will be used in the next
9393
step.
9494
9595
```
9696
$ cd ~/connectedhomeip/examples/all-clusters-app/cc13x2x7_26x2x7
9797
OR
9898
$ cd ~/connectedhomeip/examples/all-clusters-minimal-app/cc13x4_26x4
99-
$ gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.16.2\""
99+
$ gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.18.1\""
100100
$ ninja -C out/debug
101101
102102
```
@@ -105,7 +105,7 @@ Ninja to build the executable.
105105
to the GN call.
106106
107107
```
108-
gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.16.2\" target_defines=[\"CC13X4_26X4_ATTESTATION_CREDENTIALS=1\"]"
108+
gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.18.1\" target_defines=[\"CC13X4_26X4_ATTESTATION_CREDENTIALS=1\"]"
109109
```
110110
111111
## Programming

examples/all-clusters-app/cc13x4_26x4/chip.syscfg

-2
Original file line numberDiff line numberDiff line change
@@ -168,14 +168,12 @@ LED1.$name = "CONFIG_LED_RED";
168168
LED1.$hardware = system.deviceData.board.components.LED_RED;
169169
LED1.gpioPin.$name = "CONFIG_GPIO_RLED";
170170
LED1.gpioPin.mode = "Output";
171-
LED1.gpioPin.callbackFunction = "";
172171

173172
/* Green LED */
174173
LED2.$name = "CONFIG_LED_GREEN";
175174
LED2.$hardware = system.deviceData.board.components.LED_GREEN;
176175
LED2.gpioPin.$name = "CONFIG_GPIO_GLED";
177176
LED2.gpioPin.mode = "Output";
178-
LED2.gpioPin.callbackFunction = "";
179177

180178
/* Debug UART */
181179
UART2.$hardware = system.deviceData.board.components.XDS110UART;

examples/lighting-app/cc13x2x7_26x2x7/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ guide assumes that the environment is linux based, and recommends Ubuntu 20.04.
5858

5959
```
6060
$ cd ~
61-
$ `wget https://dr-download.ti.com/software-development/ide-configuration-compiler-or-debugger/MD-nsUM6f7Vvb/1.16.2.3028/sysconfig-1.16.2_3028-setup.run`
62-
$ chmod +x sysconfig-1.16.2_3028-setup.run
63-
$ ./sysconfig-1.16.2_3028-setup.run
61+
$ wget https://dr-download.ti.com/software-development/ide-configuration-compiler-or-debugger/MD-nsUM6f7Vvb/1.18.1.3343/sysconfig-1.18.1_3343-setup.run
62+
$ chmod +x sysconfig-1.18.1_3343-setup.run
63+
$ ./sysconfig-1.18.1_3343-setup.run
6464
```
6565
6666
- Run the bootstrap script to setup the build environment.
@@ -87,13 +87,13 @@ Ninja to build the executable.
8787
- Run the build to produce a default executable. By default on Linux both the
8888
TI SimpleLink SDK and Sysconfig are located in a `ti` folder in the user's
8989
home directory, and you must provide the absolute path to them. For example
90-
`/home/username/ti/sysconfig_1.16.2`. On Windows the default directory is
90+
`/home/username/ti/sysconfig_1.18.1`. On Windows the default directory is
9191
`C:\ti`. Take note of this install path, as it will be used in the next
9292
step.
9393
9494
```
9595
$ cd ~/connectedhomeip/examples/lock-app/cc13x2x7_26x2x7
96-
$ gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.16.2\""
96+
$ gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.18.1\""
9797
$ ninja -C out/debug
9898
9999
```
@@ -103,7 +103,7 @@ Ninja to build the executable.
103103
104104
105105
```
106-
gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.16.2\""
106+
gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.18.1\" target_defines=[\"CC13X2_26X2_ATTESTATION_CREDENTIALS=1\"]"
107107
```
108108
109109
## Programming

examples/lighting-app/cc13x2x7_26x2x7/chip.syscfg

-2
Original file line numberDiff line numberDiff line change
@@ -164,14 +164,12 @@ LED1.$name = "CONFIG_LED_RED";
164164
LED1.$hardware = system.deviceData.board.components.LED_RED;
165165
LED1.gpioPin.$name = "CONFIG_GPIO_RLED";
166166
LED1.gpioPin.mode = "Output";
167-
LED1.gpioPin.callbackFunction = "";
168167

169168
/* Green LED */
170169
LED2.$name = "CONFIG_LED_GREEN";
171170
LED2.$hardware = system.deviceData.board.components.LED_GREEN;
172171
LED2.gpioPin.$name = "CONFIG_GPIO_GLED";
173172
LED2.gpioPin.mode = "Output";
174-
LED2.gpioPin.callbackFunction = "";
175173

176174
/* Debug UART */
177175
UART2.$hardware = system.deviceData.board.components.XDS110UART;

examples/lighting-app/cc13x2x7_26x2x7/chip_ota.syscfg

-2
Original file line numberDiff line numberDiff line change
@@ -165,14 +165,12 @@ LED1.$name = "CONFIG_LED_RED";
165165
LED1.$hardware = system.deviceData.board.components.LED_RED;
166166
LED1.gpioPin.$name = "CONFIG_GPIO_RLED";
167167
LED1.gpioPin.mode = "Output";
168-
LED1.gpioPin.callbackFunction = "";
169168

170169
/* Green LED */
171170
LED2.$name = "CONFIG_LED_GREEN";
172171
LED2.$hardware = system.deviceData.board.components.LED_GREEN;
173172
LED2.gpioPin.$name = "CONFIG_GPIO_GLED";
174173
LED2.gpioPin.mode = "Output";
175-
LED2.gpioPin.callbackFunction = "";
176174

177175
/* Debug UART */
178176
UART2.$hardware = system.deviceData.board.components.XDS110UART;

examples/lighting-app/cc13x4_26x4/README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ guide assumes that the environment is linux based, and recommends Ubuntu 20.04.
5656
- Download and install [SysConfig][sysconfig]. This can be done simply with
5757
the following commands.
5858

59-
```
59+
```
6060
$ cd ~
61-
$ `wget https://dr-download.ti.com/software-development/ide-configuration-compiler-or-debugger/MD-nsUM6f7Vvb/1.16.2.3028/sysconfig-1.16.2_3028-setup.run`
62-
$ chmod +x sysconfig-1.16.2_3028-setup.run
63-
$ ./sysconfig-1.16.2_3028-setup.run
61+
$ wget https://dr-download.ti.com/software-development/ide-configuration-compiler-or-debugger/MD-nsUM6f7Vvb/1.18.1.3343/sysconfig-1.18.1_3343-setup.run
62+
$ chmod +x sysconfig-1.18.1_3343-setup.run
63+
$ ./sysconfig-1.18.1_3343-setup.run
6464
```
6565
6666
- Run the bootstrap script to setup the build environment.
@@ -87,13 +87,13 @@ Ninja to build the executable.
8787
- Run the build to produce a default executable. By default on Linux both the
8888
TI SimpleLink SDK and Sysconfig are located in a `ti` folder in the user's
8989
home directory, and you must provide the absolute path to them. For example
90-
`/home/username/ti/sysconfig_1.16.2`. On Windows the default directory is
90+
`/home/username/ti/sysconfig_1.18.1`. On Windows the default directory is
9191
`C:\ti`. Take note of this install path, as it will be used in the next
9292
step.
9393
9494
```
9595
$ cd ~/connectedhomeip/examples/lock-app/cc13x4_26x4
96-
$ gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.16.2\""
96+
$ gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.18.1\""
9797
$ ninja -C out/debug
9898
9999
```
@@ -103,7 +103,7 @@ Ninja to build the executable.
103103
104104
105105
```
106-
gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.16.2\""
106+
gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.18.1\" target_defines=[\"CC13X4_26X4_ATTESTATION_CREDENTIALS=1\"]"
107107
```
108108
109109
## Programming

examples/lighting-app/cc13x4_26x4/chip.syscfg

-2
Original file line numberDiff line numberDiff line change
@@ -168,14 +168,12 @@ LED1.$name = "CONFIG_LED_RED";
168168
LED1.$hardware = system.deviceData.board.components.LED_RED;
169169
LED1.gpioPin.$name = "CONFIG_GPIO_RLED";
170170
LED1.gpioPin.mode = "Output";
171-
LED1.gpioPin.callbackFunction = "";
172171

173172
/* Green LED */
174173
LED2.$name = "CONFIG_LED_GREEN";
175174
LED2.$hardware = system.deviceData.board.components.LED_GREEN;
176175
LED2.gpioPin.$name = "CONFIG_GPIO_GLED";
177176
LED2.gpioPin.mode = "Output";
178-
LED2.gpioPin.callbackFunction = "";
179177

180178
/* Debug UART */
181179
UART2.$hardware = system.deviceData.board.components.XDS110UART;

examples/lock-app/cc13x2x7_26x2x7/README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ guide assumes that the environment is linux based, and recommends Ubuntu 20.04.
5757
- Download and install [SysConfig][sysconfig]. This can be done simply with
5858
the following commands.
5959

60-
```
60+
```
6161
$ cd ~
62-
$ `https://dr-download.ti.com/software-development/ide-configuration-compiler-or-debugger/MD-nsUM6f7Vvb/1.16.2.3028/sysconfig-1.16.2_3028-setup.run`
63-
$ chmod +x sysconfig-1.16.2_3028-setup.run
64-
$ ./sysconfig-1.16.2_3028-setup.run
62+
$ wget https://dr-download.ti.com/software-development/ide-configuration-compiler-or-debugger/MD-nsUM6f7Vvb/1.18.1.3343/sysconfig-1.18.1_3343-setup.run
63+
$ chmod +x sysconfig-1.18.1_3343-setup.run
64+
$ ./sysconfig-1.18.1_3343-setup.run
6565
```
6666
6767
- Run the bootstrap script to setup the build environment.
@@ -88,15 +88,15 @@ Ninja to build the executable.
8888
- Run the build to produce a default executable. By default on Linux both the
8989
TI SimpleLink SDK and Sysconfig are located in a `ti` folder in the user's
9090
home directory, and you must provide the absolute path to them. For example
91-
`/home/username/ti/sysconfig_1.16.2`. On Windows the default directory is
91+
`/home/username/ti/sysconfig_1.18.1`. On Windows the default directory is
9292
`C:\ti`. Take note of this install path, as it will be used in the next
9393
step.
9494
9595
```
9696
$ cd ~/connectedhomeip/examples/lock-app/cc13x2x7_26x2x7
9797
OR
9898
$ cd ~/connectedhomeip/examples/lock-app/cc13x4_26x4
99-
$ gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.16.2\""
99+
$ gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.18.1\""
100100
$ ninja -C out/debug
101101
102102
```
@@ -106,7 +106,7 @@ Ninja to build the executable.
106106
107107
108108
```
109-
gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.16.2\" target_defines=[\"CC13X2_26X2_ATTESTATION_CREDENTIALS=1\"]"
109+
gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.18.1\" target_defines=[\"CC13X2_26X2_ATTESTATION_CREDENTIALS=1\"]"
110110
```
111111
112112
## Programming

examples/lock-app/cc13x2x7_26x2x7/chip.syscfg

-2
Original file line numberDiff line numberDiff line change
@@ -164,14 +164,12 @@ LED1.$name = "CONFIG_LED_RED";
164164
LED1.$hardware = system.deviceData.board.components.LED_RED;
165165
LED1.gpioPin.$name = "CONFIG_GPIO_RLED";
166166
LED1.gpioPin.mode = "Output";
167-
LED1.gpioPin.callbackFunction = "";
168167

169168
/* Green LED */
170169
LED2.$name = "CONFIG_LED_GREEN";
171170
LED2.$hardware = system.deviceData.board.components.LED_GREEN;
172171
LED2.gpioPin.$name = "CONFIG_GPIO_GLED";
173172
LED2.gpioPin.mode = "Output";
174-
LED2.gpioPin.callbackFunction = "";
175173

176174
/* Debug UART */
177175
UART2.$hardware = system.deviceData.board.components.XDS110UART;

examples/lock-app/cc13x2x7_26x2x7/chip_ota.syscfg

-2
Original file line numberDiff line numberDiff line change
@@ -165,14 +165,12 @@ LED1.$name = "CONFIG_LED_RED";
165165
LED1.$hardware = system.deviceData.board.components.LED_RED;
166166
LED1.gpioPin.$name = "CONFIG_GPIO_RLED";
167167
LED1.gpioPin.mode = "Output";
168-
LED1.gpioPin.callbackFunction = "";
169168

170169
/* Green LED */
171170
LED2.$name = "CONFIG_LED_GREEN";
172171
LED2.$hardware = system.deviceData.board.components.LED_GREEN;
173172
LED2.gpioPin.$name = "CONFIG_GPIO_GLED";
174173
LED2.gpioPin.mode = "Output";
175-
LED2.gpioPin.callbackFunction = "";
176174

177175
/* Debug UART */
178176
UART2.$hardware = system.deviceData.board.components.XDS110UART;

examples/lock-app/cc13x4_26x4/README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ guide assumes that the environment is linux based, and recommends Ubuntu 20.04.
5757
- Download and install [SysConfig][sysconfig]. This can be done simply with
5858
the following commands.
5959

60-
```
60+
```
6161
$ cd ~
62-
$ `wget https://dr-download.ti.com/software-development/ide-configuration-compiler-or-debugger/MD-nsUM6f7Vvb/1.16.2.3028/sysconfig-1.16.2_3028-setup.run`
63-
$ chmod +x sysconfig-1.16.2_3028-setup.run
64-
$ ./sysconfig-1.16.2_3028-setup.run
62+
$ wget https://dr-download.ti.com/software-development/ide-configuration-compiler-or-debugger/MD-nsUM6f7Vvb/1.18.1.3343/sysconfig-1.18.1_3343-setup.run
63+
$ chmod +x sysconfig-1.18.1_3343-setup.run
64+
$ ./sysconfig-1.18.1_3343-setup.run
6565
```
6666
6767
- Run the bootstrap script to setup the build environment.
@@ -88,15 +88,15 @@ Ninja to build the executable.
8888
- Run the build to produce a default executable. By default on Linux both the
8989
TI SimpleLink SDK and Sysconfig are located in a `ti` folder in the user's
9090
home directory, and you must provide the absolute path to them. For example
91-
`/home/username/ti/sysconfig_1.16.2`. On Windows the default directory is
91+
`/home/username/ti/sysconfig_1.18.1`. On Windows the default directory is
9292
`C:\ti`. Take note of this install path, as it will be used in the next
9393
step.
9494
9595
```
9696
$ cd ~/connectedhomeip/examples/lock-app/cc13x2x7_26x2x7
9797
OR
9898
$ cd ~/connectedhomeip/examples/lock-app/cc13x4_26x4
99-
$ gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.16.2\""
99+
$ gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.18.1\""
100100
$ ninja -C out/debug
101101
102102
```
@@ -106,7 +106,7 @@ Ninja to build the executable.
106106
107107
108108
```
109-
gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.16.2\" target_defines=[\"CC13X4_26X4_ATTESTATION_CREDENTIALS=1\"]"
109+
gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.18.1\" target_defines=[\"CC13X4_26X4_ATTESTATION_CREDENTIALS=1\"]"
110110
```
111111
112112
## Programming

examples/lock-app/cc13x4_26x4/chip.syscfg

-2
Original file line numberDiff line numberDiff line change
@@ -168,14 +168,12 @@ LED1.$name = "CONFIG_LED_RED";
168168
LED1.$hardware = system.deviceData.board.components.LED_RED;
169169
LED1.gpioPin.$name = "CONFIG_GPIO_RLED";
170170
LED1.gpioPin.mode = "Output";
171-
LED1.gpioPin.callbackFunction = "";
172171

173172
/* Green LED */
174173
LED2.$name = "CONFIG_LED_GREEN";
175174
LED2.$hardware = system.deviceData.board.components.LED_GREEN;
176175
LED2.gpioPin.$name = "CONFIG_GPIO_GLED";
177176
LED2.gpioPin.mode = "Output";
178-
LED2.gpioPin.callbackFunction = "";
179177

180178
/* Debug UART */
181179
UART2.$hardware = system.deviceData.board.components.XDS110UART;

examples/pump-app/cc13x2x7_26x2x7/README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ guide assumes that the environment is linux based, and recommends Ubuntu 20.04.
5656
- Download and install [SysConfig][sysconfig]. This can be done simply with
5757
the following commands.
5858

59-
```
59+
```
6060
$ cd ~
61-
$ `wget https://dr-download.ti.com/software-development/ide-configuration-compiler-or-debugger/MD-nsUM6f7Vvb/1.16.2.3028/sysconfig-1.16.2_3028-setup.run`
62-
$ chmod +x sysconfig-1.16.2_3028-setup.run
63-
$ ./sysconfig-1.16.2_3028-setup.run
61+
$ wget https://dr-download.ti.com/software-development/ide-configuration-compiler-or-debugger/MD-nsUM6f7Vvb/1.18.1.3343/sysconfig-1.18.1_3343-setup.run
62+
$ chmod +x sysconfig-1.18.1_3343-setup.run
63+
$ ./sysconfig-1.18.1_3343-setup.run
6464
```
6565
6666
- Run the bootstrap script to setup the build environment.
@@ -87,15 +87,15 @@ Ninja to build the executable.
8787
- Run the build to produce a default executable. By default on Linux both the
8888
TI SimpleLink SDK and Sysconfig are located in a `ti` folder in the user's
8989
home directory, and you must provide the absolute path to them. For example
90-
`/home/username/ti/sysconfig_1.16.2`. On Windows the default directory is
90+
`/home/username/ti/sysconfig_1.18.1`. On Windows the default directory is
9191
`C:\ti`. Take note of this install path, as it will be used in the next
9292
step.
9393
9494
```
9595
$ cd ~/connectedhomeip/examples/pump-app/cc13x2x7_26x2x7
9696
OR
9797
$ cd ~/connectedhomeip/examples/pump-app/cc13x4_26x4
98-
$ gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.16.2\""
98+
$ gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.18.1\""
9999
$ ninja -C out/debug
100100
101101
```
@@ -104,7 +104,7 @@ Ninja to build the executable.
104104
to the GN call.
105105
106106
```
107-
gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.16.2\" target_defines=[\"CC13X2_26X2_ATTESTATION_CREDENTIALS=1\"]"
107+
gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.18.1\" target_defines=[\"CC13X2_26X2_ATTESTATION_CREDENTIALS=1\"]"
108108
```
109109
110110
## Programming

0 commit comments

Comments
 (0)