Skip to content

Commit

Permalink
Merge branch 'feature/support_ieee802154_for_esp32c5_base_master' int…
Browse files Browse the repository at this point in the history
…o 'master'

feat(802.15.4): support 802.15.4 on esp32c5

Closes TZ-959 and TZ-956

See merge request espressif/esp-idf!32240
  • Loading branch information
chshu committed Aug 6, 2024
2 parents 13bcf6b + 3d46e6e commit 8e4454b
Show file tree
Hide file tree
Showing 17 changed files with 1,035 additions and 14 deletions.
12 changes: 12 additions & 0 deletions components/soc/esp32c5/ieee802154_periph.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/*
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/

#include "soc/ieee802154_periph.h"

const ieee802154_conn_t ieee802154_periph = {
.module = PERIPH_IEEE802154_MODULE,
.irq_id = ETS_ZB_MAC_INTR_SOURCE,
};
4 changes: 4 additions & 0 deletions components/soc/esp32c5/include/soc/Kconfig.soc_caps.in
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,10 @@ config SOC_SECURE_BOOT_SUPPORTED
bool
default y

config SOC_IEEE802154_SUPPORTED
bool
default y

config SOC_APM_SUPPORTED
bool
default y
Expand Down
Loading

0 comments on commit 8e4454b

Please sign in to comment.