mirror of
https://github.com/espressif/esp-idf.git
synced 2026-06-04 20:26:38 +03:00
License of soc component is changed from Apache-2.0 to Apache-2.0 OR MIT to be able to use it in esp-stub-lib
13 lines
283 B
C
13 lines
283 B
C
/*
|
|
* SPDX-FileCopyrightText: 2025 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
*/
|
|
|
|
#include "soc/ieee802154_periph.h"
|
|
|
|
const ieee802154_conn_t ieee802154_periph = {
|
|
.module = PERIPH_IEEE802154_MODULE,
|
|
.irq_id = ETS_ZB_MAC_SOURCE,
|
|
};
|