6LowPAN mesh-based network support for mbedConnectorInterface. The Atmel-based mbed 6LowPAN shield is the assumed network hardware.
Dependencies: libnsdl Nanostack_lib
mbedEndpointNetworkStubs.h
- Committer:
- ansond
- Date:
- 2015-02-01
- Revision:
- 0:2a5a48a8b4d4
- Child:
- 4:2c8eeaf31699
File content as of revision 0:2a5a48a8b4d4:
/** * @file mbedEndpointNetworkStubs.h * @brief mbed Endpoint Network Stubs header - these must be implemented in any lower network layer interfacing with mbedConnectorInterface * @author Doug Anson * @version 1.0 * @see * * Copyright (c) 2014 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef __MBED_ENDPOINT_NETWORK_STUBS_H__ #define __MBED_ENDPOINT_NETWORK_STUBS_H__ #include "configuration.h" #include "nsdl_support.h" // we have to redefine DBG as its used differently here... #ifdef DBG #undef DBG #endif #define DBG printf // Linkage to the lower network APIs and interfaces extern "C" void net_stubs_plumb_network(bool canActAsRouterNode); extern "C" void net_stubs_create_main_loop(void); extern "C" void net_stubs_register_endpoint(); extern "C" void net_stubs_begin_main_loop(void); #endif // __MBED_ENDPOINT_NETWORK_STUBS_H__