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

Committer:
mbed_official
Date:
Thu Sep 26 10:02:16 2019 +0100
Revision:
105:d9f83743ed4f
Parent:
82:3d9e3b7b3dcf
Merge branch 'mbed-os-5.14'

* mbed-os-5.14:
Updating mbed-os to mbed-os-5.14.0-rc3
Set extended heap on use to border router cell configuration
Added support for Cellular PPP interface
Edit README.md
Remove unnecessary checks
Enable extended heap for Wi-SUN
Updating mbed-os to mbed-os-5.14.0-rc1

.
Commit copied from https://github.com/ARMmbed/nanostack-border-router

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 0:85f4174a8e29 1 {
mbed_official 0:85f4174a8e29 2 "config": {
mbed_official 0:85f4174a8e29 3 "radio-type":{
mbed_official 0:85f4174a8e29 4 "help": "options are ATMEL, MCR20",
mbed_official 0:85f4174a8e29 5 "value": "ATMEL"
mbed_official 0:85f4174a8e29 6 },
mbed_official 0:85f4174a8e29 7 "backhaul-driver": {
mbed_official 105:d9f83743ed4f 8 "help": "options are ETH, SLIP, EMAC, CELL",
mbed_official 69:a8a0ac9f3f8a 9 "value": "EMAC"
mbed_official 0:85f4174a8e29 10 },
mbed_official 0:85f4174a8e29 11 "mesh-mode": {
mbed_official 0:85f4174a8e29 12 "help": "Mesh networking mode. Options are LOWPAN_ND and THREAD",
mbed_official 0:85f4174a8e29 13 "value": "THREAD"
mbed_official 0:85f4174a8e29 14 },
mbed_official 0:85f4174a8e29 15 "backhaul-mac-src": {
mbed_official 0:85f4174a8e29 16 "help": "Where to get EUI48 address. Options are BOARD, CONFIG",
mbed_official 0:85f4174a8e29 17 "value": "BOARD"
mbed_official 0:85f4174a8e29 18 },
mbed_official 22:8740285d8f09 19 "backhaul-mld": {
mbed_official 22:8740285d8f09 20 "help": "Enable proxying Multicast Listener Discovery messages to backhaul network",
mbed_official 22:8740285d8f09 21 "value": "false"
mbed_official 22:8740285d8f09 22 },
mbed_official 105:d9f83743ed4f 23 "nanostack_extended_heap": {
mbed_official 105:d9f83743ed4f 24 "help": "Add additional memory region to nanostack heap. Valid only for selected platforms. Region size may vary depending of the toolchain.",
mbed_official 105:d9f83743ed4f 25 "value": false
mbed_official 105:d9f83743ed4f 26 },
mbed_official 0:85f4174a8e29 27 "backhaul-mac": "{0x02, 0x00, 0x00, 0x00, 0x00, 0x01}",
mbed_official 0:85f4174a8e29 28 "rf-channel": 22,
mbed_official 0:85f4174a8e29 29 "rf-channel-page": 0,
mbed_official 0:85f4174a8e29 30 "rf-channel-mask": "0x07fff800",
mbed_official 0:85f4174a8e29 31 "debug-trace": 1,
mbed_official 0:85f4174a8e29 32 "backhaul-dynamic-bootstrap": true,
mbed_official 0:85f4174a8e29 33 "backhaul-prefix": "\"fd00:300::\"",
mbed_official 0:85f4174a8e29 34 "backhaul-next-hop": "\"fe80::1\"",
mbed_official 0:85f4174a8e29 35 "backhaul-default-route": "\"::/0\"",
mbed_official 0:85f4174a8e29 36 "commissioning-dataset-timestamp": "0x00010000",
mbed_official 0:85f4174a8e29 37 "pan-id": "0x0700",
mbed_official 0:85f4174a8e29 38 "extended-pan-id": "{0xf1, 0xb5, 0xa1, 0xb2,0xc4, 0xd5, 0xa1, 0xbd }",
mbed_official 0:85f4174a8e29 39 "mesh-local-prefix": "{0xfd, 0x0, 0x0d, 0xb8, 0x0,0x0, 0x0, 0x0}",
mbed_official 0:85f4174a8e29 40 "network-name": "\"Thread Network\"",
mbed_official 65:92e581c01e8c 41 "pskd": "\"ABCDEFGH\"",
mbed_official 0:85f4174a8e29 42 "pskc": "{0xc8, 0xa6, 0x2e, 0xae, 0xf3, 0x68, 0xf3, 0x46, 0xa9, 0x9e, 0x57, 0x85, 0x98, 0x9d, 0x1c, 0xd0}",
mbed_official 0:85f4174a8e29 43 "thread-master-key": "{0x10, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff}",
mbed_official 12:04fcf9df91e2 44 "thread-use-static-link-config": true,
mbed_official 57:b201a7a8ddc9 45 "thread-security-policy": 255,
mbed_official 0:85f4174a8e29 46 "LED": "NC",
mbed_official 0:85f4174a8e29 47 "SERIAL_TX": "NC",
mbed_official 0:85f4174a8e29 48 "SERIAL_RX": "NC",
mbed_official 0:85f4174a8e29 49 "SERIAL_CTS": "NC",
mbed_official 0:85f4174a8e29 50 "SERIAL_RTS": "NC"
mbed_official 0:85f4174a8e29 51 },
mbed_official 0:85f4174a8e29 52 "macros": ["MBEDTLS_USER_CONFIG_FILE=\"source/mbedtls_thread_config.h\""],
mbed_official 0:85f4174a8e29 53 "target_overrides": {
mbed_official 0:85f4174a8e29 54 "*": {
mbed_official 65:92e581c01e8c 55 "target.network-default-interface-type": "ETHERNET",
mbed_official 65:92e581c01e8c 56 "nsapi.default-stack": "NANOSTACK",
mbed_official 0:85f4174a8e29 57 "mbed-trace.enable": 1,
mbed_official 0:85f4174a8e29 58 "nanostack.configuration": "thread_border_router",
mbed_official 0:85f4174a8e29 59 "platform.stdio-convert-newlines": true,
mbed_official 65:92e581c01e8c 60 "platform.stdio-baud-rate": 115200,
mbed_official 105:d9f83743ed4f 61 "mbed-mesh-api.heap-size": 65535,
mbed_official 105:d9f83743ed4f 62 "mbed-mesh-api.heap-stat-info": "&memory_heap_stat",
mbed_official 105:d9f83743ed4f 63 "mbed-mesh-api.heap-stat-info-definition": "mem_stat_t memory_heap_stat;"
mbed_official 0:85f4174a8e29 64 },
mbed_official 0:85f4174a8e29 65 "K64F": {
mbed_official 0:85f4174a8e29 66 "LED": "LED_GREEN",
mbed_official 0:85f4174a8e29 67 "SERIAL_TX": "PTE0",
mbed_official 0:85f4174a8e29 68 "SERIAL_RX": "PTE1",
mbed_official 0:85f4174a8e29 69 "SERIAL_CTS": "PTE2",
mbed_official 69:a8a0ac9f3f8a 70 "SERIAL_RTS": "PTE3",
mbed_official 69:a8a0ac9f3f8a 71 "kinetis-emac.tx-ring-len":4,
mbed_official 69:a8a0ac9f3f8a 72 "kinetis-emac.rx-ring-len":4
mbed_official 2:1411fd11ccdd 73 },
mbed_official 2:1411fd11ccdd 74 "K66F": {
mbed_official 69:a8a0ac9f3f8a 75 "LED": "LED_GREEN",
mbed_official 69:a8a0ac9f3f8a 76 "kinetis-emac.tx-ring-len":4,
mbed_official 69:a8a0ac9f3f8a 77 "kinetis-emac.rx-ring-len":4
mbed_official 0:85f4174a8e29 78 }
mbed_official 0:85f4174a8e29 79 }
mbed_official 0:85f4174a8e29 80 }