Skip to content

Commit f8147dd

Browse files
committed
readme and sysconfig updates for v1.18.1
1 parent 3559bdc commit f8147dd

File tree

12 files changed

+36
-48
lines changed

12 files changed

+36
-48
lines changed

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/cc13x4_26x4/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/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/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/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/cc13x4_26x4/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,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=[\"CC13X4_26X4_ATTESTATION_CREDENTIALS=1\"]"
107+
gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.18.1\" target_defines=[\"CC13X4_26X4_ATTESTATION_CREDENTIALS=1\"]"
108108
```
109109
110110
## Programming

examples/pump-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-controller-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/pump-controller-app/cc13x2x7_26x2x7
9797
OR
9898
$ cd ~/connectedhomeip/examples/pump-controller-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/pump-controller-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/shell/cc13x4_26x4/README.md

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

1717
```
1818
$ cd ~
19-
$ `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`
20-
$ chmod +x sysconfig-1.16.2_3028-setup.run
21-
$ ./sysconfig-1.16.2_3028-setup.run
19+
$ 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
20+
$ chmod +x sysconfig-1.18.1_3343-setup.run
21+
$ ./sysconfig-1.18.1_3343-setup.run
2222
```
2323
2424
- Run the bootstrap script to setup the build environment.
@@ -45,15 +45,15 @@ Ninja to build the executable.
4545
- Run the build to produce a default executable. By default on Linux both the
4646
TI SimpleLink SDK and Sysconfig are located in a `ti` folder in the user's
4747
home directory, and you must provide the absolute path to them. For example
48-
`/home/username/ti/sysconfig_1.16.2`. On Windows the default directory is
48+
`/home/username/ti/sysconfig_1.18.1`. On Windows the default directory is
4949
`C:\ti`. Take note of this install path, as it will be used in the next
5050
step.
5151
5252
```
5353
$ cd ~/connectedhomeip/examples/shell/cc13x2x7_26x2x7
5454
OR
5555
$ cd ~/connectedhomeip/examples/shell/cc13x4_26x4
56-
$ gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.16.2"
56+
$ gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.18.1"
5757
$ ninja -C out/debug
5858
5959
```
@@ -62,7 +62,7 @@ Ninja to build the executable.
6262
to the GN call.
6363
6464
```
65-
gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.16.2\" target_defines=[\"CC13X4_26X4_ATTESTATION_CREDENTIALS=1\"]"
65+
gn gen out/debug --args="ti_sysconfig_root=\"$HOME/ti/sysconfig_1.18.1\" target_defines=[\"CC13X4_26X4_ATTESTATION_CREDENTIALS=1\"]"
6666
```
6767
6868
## Programming

examples/shell/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;

0 commit comments

Comments
 (0)