Skip to content

Commit

Permalink
feat(802.15.4): support 802.15.4 on esp32c5
Browse files Browse the repository at this point in the history
  • Loading branch information
zwx1995esp committed Aug 2, 2024
1 parent cf05fa3 commit 3d46e6e
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 3d46e6e

Please sign in to comment.