2017-07-19 13:00:04 +02:00
|
|
|
/* IEEE 802.15.4 settings header */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2017 Intel Corporation.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
2018-08-12 08:32:12 +02:00
|
|
|
#if defined(CONFIG_NET_L2_IEEE802154) && defined(CONFIG_NET_CONFIG_SETTINGS)
|
2023-09-07 15:25:49 +02:00
|
|
|
struct net_if;
|
|
|
|
|
|
|
|
int z_net_config_ieee802154_setup(struct net_if *iface);
|
2017-07-19 13:00:04 +02:00
|
|
|
#else
|
2019-03-15 02:42:51 +01:00
|
|
|
#define z_net_config_ieee802154_setup(...) 0
|
2017-07-19 13:00:04 +02:00
|
|
|
#endif
|