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

source/thread_bbr_ext.h

Committer:
mbed_official
Date:
2019-11-27
Revision:
108:0c14bd1d3334
Parent:
24:e59769612cb2

File content as of revision 108:0c14bd1d3334:

/*
 * Copyright (c) 2017 ARM Limited. All rights reserved.
 */

#ifndef _THREAD_BBR_EXT_
#define _THREAD_BBR_EXT_

#ifdef __cplusplus
extern "C" {
#endif

#if MBED_CONF_APP_THREAD_BBR_EXTENSION == 1

#include "../../thread_bbr_extension/thread_bbr_extension.h"

#else

#define thread_bbr_extension_mesh_interface_updated_ntf(thread_interface_id);
#define thread_bbr_extension_bb_interface_updated_ntf(bb_interface_id);
#define thread_bbr_extension_start(thread_interface_id, bb_interface_id);

#endif // MBED_CONF_APP_THREAD_BBR_EXTENSION

#ifdef __cplusplus
}
#endif
#endif /* _THREAD_BBR_EXT_ */