BA / Mbed OS BaBoRo1
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers nsconfig.h Source File

nsconfig.h

00001 /*
00002  * Copyright (c) 2014-2017, Arm Limited and affiliates.
00003  * SPDX-License-Identifier: Apache-2.0
00004  *
00005  * Licensed under the Apache License, Version 2.0 (the "License");
00006  * you may not use this file except in compliance with the License.
00007  * You may obtain a copy of the License at
00008  *
00009  *     http://www.apache.org/licenses/LICENSE-2.0
00010  *
00011  * Unless required by applicable law or agreed to in writing, software
00012  * distributed under the License is distributed on an "AS IS" BASIS,
00013  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00014  * See the License for the specific language governing permissions and
00015  * limitations under the License.
00016  */
00017 
00018 /**
00019  * Build definitions, for now we define the default configuration here.
00020  */
00021 
00022 #ifndef _NANOSTACK_SOURCE_CONFIG_H
00023 #define _NANOSTACK_SOURCE_CONFIG_H
00024 
00025 #include "ns_types.h"
00026 
00027 #ifdef __CC_ARM
00028 #pragma diag_suppress 546 // transfer of control bypasses initialization
00029 #endif
00030 
00031 #define __ns_cfg_header(x) #x
00032 #define _ns_cfg_header(x) __ns_cfg_header(configs/x.cfg)
00033 #define ns_cfg_header(x) _ns_cfg_header(x)
00034 
00035 
00036 #ifdef YOTTA_CFG_NANOSTACK_CONFIGURATION
00037 #define NSCONFIG YOTTA_CFG_NANOSTACK_CONFIGURATION
00038 #endif
00039 
00040 #ifdef MBED_CONF_NANOSTACK_CONFIGURATION
00041 #define NSCONFIG MBED_CONF_NANOSTACK_CONFIGURATION
00042 #endif
00043 
00044 #ifndef NSCONFIG
00045 #define NSCONFIG nanostack_full
00046 #endif
00047 
00048 #include ns_cfg_header(NSCONFIG)
00049 
00050 #if defined(HAVE_THREAD)
00051 /** For thread HAVE_MESH and HAVE_DHCPV6 must be defined minimal */
00052 #ifndef HAVE_MESH
00053 #define HAVE_MESH
00054 #endif
00055 #ifndef HAVE_DHCPV6
00056 #define HAVE_DHCPV6
00057 #endif
00058 #endif /* HAVE_THREAD */
00059 
00060 
00061 #endif // ifndef _NANOSTACK_SOURCE_CONFIG_H
00062