Nanostack Border Router is a generic mbed border router implementation that provides the 6LoWPAN ND or Thread border router initialization logic.

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers thread_bbr_ext.h Source File

thread_bbr_ext.h

00001 /*
00002  * Copyright (c) 2017 ARM Limited. All rights reserved.
00003  */
00004 
00005 #ifndef _THREAD_BBR_EXT_
00006 #define _THREAD_BBR_EXT_
00007 
00008 #ifdef __cplusplus
00009 extern "C" {
00010 #endif
00011 
00012 #if MBED_CONF_APP_THREAD_BBR_EXTENSION == 1
00013 
00014 #include "../../thread_bbr_extension/thread_bbr_extension.h"
00015 
00016 #else
00017 
00018 #define thread_bbr_extension_mesh_interface_updated_ntf(thread_interface_id);
00019 #define thread_bbr_extension_bb_interface_updated_ntf(bb_interface_id);
00020 #define thread_bbr_extension_start(thread_interface_id, bb_interface_id);
00021 
00022 #endif // MBED_CONF_APP_THREAD_BBR_EXTENSION
00023 
00024 #ifdef __cplusplus
00025 }
00026 #endif
00027 #endif /* _THREAD_BBR_EXT_ */
00028