2017-07-31 21:26:01 +08:00
|
|
|
/* IEEE 802.15.4 settings header */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2017 Intel Corporation.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
2018-08-12 14:32:12 +08:00
|
|
|
#if defined(CONFIG_NET_L2_BT) && defined(CONFIG_NET_CONFIG_SETTINGS)
|
2019-03-15 09:42:51 +08:00
|
|
|
int z_net_config_bt_setup(void);
|
2017-07-31 21:26:01 +08:00
|
|
|
#else
|
2019-03-15 09:42:51 +08:00
|
|
|
#define z_net_config_bt_setup(...) 0
|
2017-07-31 21:26:01 +08:00
|
|
|
#endif
|