2013-06-18 17:21:38 +02:00
|
|
|
/**
|
2013-06-22 05:11:53 +02:00
|
|
|
* System wide configuration struct.
|
2013-06-18 17:21:38 +02:00
|
|
|
*
|
|
|
|
* Copyright (C) 2013 INRIA.
|
|
|
|
*
|
2014-07-31 19:45:27 +02:00
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.
|
2013-06-18 17:21:38 +02:00
|
|
|
*
|
|
|
|
* @ingroup config
|
|
|
|
* @{
|
|
|
|
* @file config_c
|
2013-06-22 05:11:53 +02:00
|
|
|
* @brief Provides system configuration struct with default values.
|
2013-06-18 17:21:38 +02:00
|
|
|
* @author Oliver Hahm <oliver.hahm@inria.fr>
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2010-12-06 17:32:27 +01:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
config_t sysconfig = {
|
2014-10-30 17:50:07 +01:00
|
|
|
0, /**< default ID */
|
2014-10-30 23:13:11 +01:00
|
|
|
#ifdef FEATURE_TRANSCEIVER
|
2014-10-30 17:50:07 +01:00
|
|
|
0, /**< default radio address */
|
|
|
|
0, /**< default radio channel */
|
2014-10-20 16:46:53 +02:00
|
|
|
1, /**< default radio PAN id */
|
2014-10-30 17:50:07 +01:00
|
|
|
#endif
|
2014-10-20 16:46:53 +02:00
|
|
|
"foobar", /**< default name */
|
2010-12-06 17:32:27 +01:00
|
|
|
};
|