Skip to content

Commit 0e55453

Browse files
committed
feat(802.15.4): supported IEEE802.15.4 on the C5ECO2
1 parent 2e8d8be commit 0e55453

File tree

7 files changed

+15
-11
lines changed

7 files changed

+15
-11
lines changed

components/soc/esp32c5/include/soc/Kconfig.soc_caps.in

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,10 @@ config SOC_SECURE_BOOT_SUPPORTED
163163
bool
164164
default y
165165

166+
config SOC_IEEE802154_SUPPORTED
167+
bool
168+
default y
169+
166170
config SOC_BOD_SUPPORTED
167171
bool
168172
default y

components/soc/esp32c5/include/soc/soc_caps.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
#define SOC_ECC_EXTENDED_MODES_SUPPORTED 1
5858
#define SOC_FLASH_ENC_SUPPORTED 1
5959
#define SOC_SECURE_BOOT_SUPPORTED 1
60-
// #define SOC_IEEE802154_SUPPORTED 1 // TODO: [ESP32C5 ECO2] IDF-12824
60+
#define SOC_IEEE802154_SUPPORTED 1
6161
#define SOC_BOD_SUPPORTED 1
6262
#define SOC_APM_SUPPORTED 1 /*!< Support for APM peripheral */
6363
#define SOC_PMU_SUPPORTED 1

examples/ieee802154/ieee802154_cli/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
| Supported Targets | ESP32-C6 | ESP32-H2 |
2-
| ----------------- | -------- | -------- |
1+
| Supported Targets | ESP32-C5 | ESP32-C6 | ESP32-H2 |
2+
| ----------------- | -------- | -------- | -------- |
33

44
# IEEE802.15.4 Command Line Example
55

examples/openthread/ot_cli/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
| Supported Targets | ESP32-C6 | ESP32-H2 |
2-
| ----------------- | -------- | -------- |
1+
| Supported Targets | ESP32-C5 | ESP32-C6 | ESP32-H2 |
2+
| ----------------- | -------- | -------- | -------- |
33

44
# OpenThread Command Line Example
55

examples/openthread/ot_rcp/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
| Supported Targets | ESP32-C6 | ESP32-H2 |
2-
| ----------------- | -------- | -------- |
1+
| Supported Targets | ESP32-C5 | ESP32-C6 | ESP32-H2 |
2+
| ----------------- | -------- | -------- | -------- |
33

44
# OpenThread Radio Co-Processor (RCP) Example
55

examples/zigbee/light_sample/HA_on_off_light/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
| Supported Targets | ESP32-C6 | ESP32-H2 |
2-
| ----------------- | -------- | -------- |
1+
| Supported Targets | ESP32-C5 | ESP32-C6 | ESP32-H2 |
2+
| ----------------- | -------- | -------- | -------- |
33

44
# Light Bulb Example
55

examples/zigbee/light_sample/HA_on_off_switch/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
| Supported Targets | ESP32-C6 | ESP32-H2 |
2-
| ----------------- | -------- | -------- |
1+
| Supported Targets | ESP32-C5 | ESP32-C6 | ESP32-H2 |
2+
| ----------------- | -------- | -------- | -------- |
33

44
# Light Switch Example
55

0 commit comments

Comments
 (0)