mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-13 21:01:57 +00:00
This finishes refactor of splitting off net_config library name from net_app library, started inc60df1311
,c89a06dbc
. This commit makes sure that Kconfig options are prefixed with CONFIG_NET_CONFIG_ instead of CONFIG_NET_APP_, and propagates these changes thru the app configs in the tree. Also, minor dependency, etc. tweaks are made. Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org>
14 lines
302 B
C
14 lines
302 B
C
/* IEEE 802.15.4 settings header */
|
|
|
|
/*
|
|
* Copyright (c) 2017 Intel Corporation.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#if defined(CONFIG_NET_L2_IEEE802154) && defined(CONFIG_NET_CONFIG_SETTINGS)
|
|
int _net_config_ieee802154_setup(void);
|
|
#else
|
|
#define _net_config_ieee802154_setup(...) 0
|
|
#endif
|