Skip to content

Commit 8526f94

Browse files
AdityaShankarTIAditya Shankar
authored andcommitted
simplelink: ti: v3.7.0-ti-9.14.02 release
This release of TI Zephyr is based on v3.7.0 and TI SDK 9.14 and includes support and maintenance for the following Texas Instruments boards and devices. Devices: - [CC2340R5](https://www.ti.com/product/CC2340R5) - [CC2340R53](https://www.ti.com/product/CC2340R5) - [CC2745R10_Q1](https://www.ti.com/product/CC2745R10-Q1) - [CC2755R10](https://www.ti.com/product/CC2755R10) - [CC3551E](https://www.ti.com/product/CC3551E) Boards - [lp_em_cc2340r5](https://www.ti.com/tool/LP-EM-CC2340R5) - [lp_em_cc2340r5moda](https://www.ti.com/tool/LP-EM-CC2340R5) - [lp_em_cc2340r53](https://www.ti.com/tool/LP-EM-CC2340R5) - [lp_em_cc2340r53_wcsp](https://www.ti.com/tool/LP-EM-CC2340R5) - [lp_em_cc2745r10_q1](https://www.ti.com/product/CC2745R10-Q1) - [lp_em_cc2755](https://www.ti.com/product/CC2755R10) - [lp_em_cc35x1](https://www.ti.com/tool/LP-EM-CC35X1) Driver Support: - RTC: Added CC23x0 & CC27XX SoC support. - The RTC driver does not yet support rtc_alarm_set_time(), rtc_alarm_get_time() and rtc_alarm_set_callback() APIs. This will be made available in a future release. Tests: - Enable Twister tests for RTC and GPIO Fixes: - Fix kernel.object test failures. - boards: ti: remove unnecessary Kconfig value. - Change model name for cc23x0 and cc27xx. - GPIO: Correct overlays for cc27xx boards. Signed-off-by: Aditya Shankar <a-shankar@ti.com>
1 parent 3b64198 commit 8526f94

73 files changed

Lines changed: 1391 additions & 267 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

boards/ti/lp_em_cc2340r5/Kconfig.lp_em_cc2340r5

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,3 @@
55

66
config BOARD_LP_EM_CC2340R5
77
select SOC_CC2340R5
8-
9-
config BOARD_USE_LF_XOSC
10-
bool "Use external low-frequency crystal"
11-
default y

boards/ti/lp_em_cc2340r5/lp_em_cc2340r5.dts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#define BTN_GPIO_FLAGS (GPIO_ACTIVE_LOW | GPIO_PULL_UP)
1818

1919
/ {
20-
model = "LP_EM_CC2340R5";
20+
model = "TI CC2340R5 LaunchPad";
2121
compatible = "ti,lp_em_cc2340r5";
2222

2323
chosen {
@@ -41,6 +41,7 @@
4141
watchdog0 = &wdt0;
4242
mcuboot-led0 = &led1;
4343
mcuboot-button0 = &btn1;
44+
rtc = &rtc0;
4445
};
4546

4647
leds {
@@ -214,3 +215,7 @@
214215
&wdt0 {
215216
status = "okay";
216217
};
218+
219+
&rtc0 {
220+
status = "okay";
221+
};

boards/ti/lp_em_cc2340r5/lp_em_cc2340r5.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,5 @@ supported:
1717
- crypto
1818
- spi
1919
- watchdog
20+
- rtc
2021
vendor: ti

boards/ti/lp_em_cc2340r53/Kconfig.lp_em_cc2340r53

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,3 @@
55

66
config BOARD_LP_EM_CC2340R53
77
select SOC_CC2340R53
8-
9-
config BOARD_USE_LF_XOSC
10-
bool "Use external low-frequency crystal"
11-
default y

boards/ti/lp_em_cc2340r53/lp_em_cc2340r53.dts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#define BTN_GPIO_FLAGS (GPIO_ACTIVE_LOW | GPIO_PULL_UP)
1818

1919
/ {
20-
model = "LP_EM_CC2340R53";
20+
model = "TI CC2340R53 LaunchPad";
2121
compatible = "ti,lp_em_cc2340r53";
2222

2323
chosen {
@@ -39,6 +39,7 @@
3939
pwm-led0 = &pwm_green;
4040
pwm-led1 = &pwm_red;
4141
watchdog0 = &wdt0;
42+
rtc = &rtc0;
4243
mcuboot-led0 = &led1;
4344
mcuboot-button0 = &btn1;
4445
};
@@ -209,3 +210,7 @@
209210
&wdt0 {
210211
status = "okay";
211212
};
213+
214+
&rtc0 {
215+
status = "okay";
216+
};

boards/ti/lp_em_cc2340r53/lp_em_cc2340r53.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,5 @@ supported:
1717
- crypto
1818
- spi
1919
- watchdog
20+
- rtc
2021
vendor: ti

boards/ti/lp_em_cc2340r53_wcsp/Kconfig.lp_em_cc2340r53_wcsp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,3 @@
55

66
config BOARD_LP_EM_CC2340R53_WCSP
77
select SOC_CC2340R53
8-
9-
config BOARD_USE_LF_XOSC
10-
bool "Use external low-frequency crystal"
11-
default y

boards/ti/lp_em_cc2340r53_wcsp/lp_em_cc2340r53_wcsp.dts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#define BTN_GPIO_FLAGS (GPIO_ACTIVE_LOW | GPIO_PULL_UP)
1818

1919
/ {
20-
model = "CC2340R53 WCSP launchpad";
20+
model = "TI CC2340R53 WCSP launchPad";
2121
compatible = "ti,lp_em_cc2340r53_wcsp";
2222

2323
chosen {
@@ -39,6 +39,7 @@
3939
pwm-led0 = &pwm_green;
4040
pwm-led1 = &pwm_red;
4141
watchdog0 = &wdt0;
42+
rtc = &rtc0;
4243
mcuboot-led0 = &led1;
4344
mcuboot-button0 = &btn1;
4445
};
@@ -202,3 +203,7 @@
202203
&wdt0 {
203204
status = "okay";
204205
};
206+
207+
&rtc0 {
208+
status = "okay";
209+
};

boards/ti/lp_em_cc2340r53_wcsp/lp_em_cc2340r53_wcsp.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@ supported:
1616
- crypto
1717
- spi
1818
- watchdog
19+
- rtc
1920
vendor: ti

boards/ti/lp_em_cc2340r5moda/Kconfig.lp_em_cc2340r5moda

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,3 @@
44

55
config BOARD_LP_EM_CC2340R5MODA
66
select SOC_CC2340R5
7-
8-
config BOARD_USE_LF_XOSC
9-
bool "Use external low-frequency crystal"
10-
default y

0 commit comments

Comments
 (0)