example using mbed loramac with GPS in application layer

Dependencies:   lib_gps

This repository can work on NAmote72.

This main.cpp generates Cayenne LPP GPS payload.

See mbed documentation for provisioning instructions.

Committer:
Wayne Roberts
Date:
Thu Jan 03 16:18:09 2019 -0800
Revision:
0:2e040cc7f7b8
initial commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Wayne Roberts 0:2e040cc7f7b8 1 {
Wayne Roberts 0:2e040cc7f7b8 2 "config": {
Wayne Roberts 0:2e040cc7f7b8 3 "lora-radio": {
Wayne Roberts 0:2e040cc7f7b8 4 "help": "Which radio to use (options: SX1272,SX1276)",
Wayne Roberts 0:2e040cc7f7b8 5 "value": "SX1272"
Wayne Roberts 0:2e040cc7f7b8 6 },
Wayne Roberts 0:2e040cc7f7b8 7 "main_stack_size": { "value": 4096 },
Wayne Roberts 0:2e040cc7f7b8 8
Wayne Roberts 0:2e040cc7f7b8 9 "lora-spi-mosi": { "value": "NC" },
Wayne Roberts 0:2e040cc7f7b8 10 "lora-spi-miso": { "value": "NC" },
Wayne Roberts 0:2e040cc7f7b8 11 "lora-spi-sclk": { "value": "NC" },
Wayne Roberts 0:2e040cc7f7b8 12 "lora-cs": { "value": "NC" },
Wayne Roberts 0:2e040cc7f7b8 13 "lora-reset": { "value": "NC" },
Wayne Roberts 0:2e040cc7f7b8 14 "lora-dio0": { "value": "NC" },
Wayne Roberts 0:2e040cc7f7b8 15 "lora-dio1": { "value": "NC" },
Wayne Roberts 0:2e040cc7f7b8 16 "lora-dio2": { "value": "NC" },
Wayne Roberts 0:2e040cc7f7b8 17 "lora-dio3": { "value": "NC" },
Wayne Roberts 0:2e040cc7f7b8 18 "lora-dio4": { "value": "NC" },
Wayne Roberts 0:2e040cc7f7b8 19 "lora-dio5": { "value": "NC" },
Wayne Roberts 0:2e040cc7f7b8 20 "lora-rf-switch-ctl1": { "value": "NC" },
Wayne Roberts 0:2e040cc7f7b8 21 "lora-rf-switch-ctl2": { "value": "NC" },
Wayne Roberts 0:2e040cc7f7b8 22 "lora-txctl": { "value": "NC" },
Wayne Roberts 0:2e040cc7f7b8 23 "lora-rxctl": { "value": "NC" },
Wayne Roberts 0:2e040cc7f7b8 24 "lora-ant-switch": { "value": "NC" },
Wayne Roberts 0:2e040cc7f7b8 25 "lora-pwr-amp-ctl": { "value": "NC" },
Wayne Roberts 0:2e040cc7f7b8 26 "lora-tcxo": { "value": "NC" }
Wayne Roberts 0:2e040cc7f7b8 27 },
Wayne Roberts 0:2e040cc7f7b8 28 "target_overrides": {
Wayne Roberts 0:2e040cc7f7b8 29 "*": {
Wayne Roberts 0:2e040cc7f7b8 30 "platform.stdio-convert-newlines": true,
Wayne Roberts 0:2e040cc7f7b8 31 "platform.stdio-baud-rate": 115200,
Wayne Roberts 0:2e040cc7f7b8 32 "platform.default-serial-baud-rate": 115200,
Wayne Roberts 0:2e040cc7f7b8 33 "lora.over-the-air-activation": true,
Wayne Roberts 0:2e040cc7f7b8 34 "lora.duty-cycle-on": false,
Wayne Roberts 0:2e040cc7f7b8 35 "lora.phy": "US915",
Wayne Roberts 0:2e040cc7f7b8 36 "lora.device-eui": "{0x00,0x25,0x0C,0x01,0x00,0x00,0x00,0x08}",
Wayne Roberts 0:2e040cc7f7b8 37 "lora.application-eui": "{0x00,0x25,0x0C,0x00,0x00,0x01,0x00,0x01}",
Wayne Roberts 0:2e040cc7f7b8 38 "lora.application-key": "{0x3D,0xFD,0xF3,0x80,0x45,0x0E,0x8B,0x8D,0x3E,0xD5,0x89,0x25,0xAA,0xD4,0x23,0x53}"
Wayne Roberts 0:2e040cc7f7b8 39 },
Wayne Roberts 0:2e040cc7f7b8 40
Wayne Roberts 0:2e040cc7f7b8 41 "MOTE_L152RC": {
Wayne Roberts 0:2e040cc7f7b8 42 "lora-spi-mosi": "PB_15",
Wayne Roberts 0:2e040cc7f7b8 43 "lora-spi-miso": "PB_14",
Wayne Roberts 0:2e040cc7f7b8 44 "lora-spi-sclk": "PB_13",
Wayne Roberts 0:2e040cc7f7b8 45 "lora-cs": "PB_12",
Wayne Roberts 0:2e040cc7f7b8 46 "lora-reset": "PC_2",
Wayne Roberts 0:2e040cc7f7b8 47 "lora-dio0": "PC_6",
Wayne Roberts 0:2e040cc7f7b8 48 "lora-dio1": "PC_10",
Wayne Roberts 0:2e040cc7f7b8 49 "lora-dio2": "PC_11",
Wayne Roberts 0:2e040cc7f7b8 50 "lora-dio3": "PC_8",
Wayne Roberts 0:2e040cc7f7b8 51 "lora-dio4": "PC_9",
Wayne Roberts 0:2e040cc7f7b8 52 "lora-dio5": "PC_12",
Wayne Roberts 0:2e040cc7f7b8 53 "lora-rf-switch-ctl1": "PC_4",
Wayne Roberts 0:2e040cc7f7b8 54 "lora-rf-switch-ctl2": "PC_13",
Wayne Roberts 0:2e040cc7f7b8 55 "lora-txctl": "NC",
Wayne Roberts 0:2e040cc7f7b8 56 "lora-rxctl": "NC",
Wayne Roberts 0:2e040cc7f7b8 57 "lora-ant-switch": "NC",
Wayne Roberts 0:2e040cc7f7b8 58 "lora-pwr-amp-ctl": "NC",
Wayne Roberts 0:2e040cc7f7b8 59 "lora-tcxo": "NC"
Wayne Roberts 0:2e040cc7f7b8 60 },
Wayne Roberts 0:2e040cc7f7b8 61 "K64F": {
Wayne Roberts 0:2e040cc7f7b8 62 "lora-spi-mosi": "D11",
Wayne Roberts 0:2e040cc7f7b8 63 "lora-spi-miso": "D12",
Wayne Roberts 0:2e040cc7f7b8 64 "lora-spi-sclk": "D13",
Wayne Roberts 0:2e040cc7f7b8 65 "lora-cs": "D10",
Wayne Roberts 0:2e040cc7f7b8 66 "lora-reset": "A0",
Wayne Roberts 0:2e040cc7f7b8 67 "lora-dio0": "D2",
Wayne Roberts 0:2e040cc7f7b8 68 "lora-dio1": "D3",
Wayne Roberts 0:2e040cc7f7b8 69 "lora-dio2": "D4",
Wayne Roberts 0:2e040cc7f7b8 70 "lora-dio3": "D5",
Wayne Roberts 0:2e040cc7f7b8 71 "lora-dio4": "D8",
Wayne Roberts 0:2e040cc7f7b8 72 "lora-dio5": "D9",
Wayne Roberts 0:2e040cc7f7b8 73 "lora-rf-switch-ctl1": "NC",
Wayne Roberts 0:2e040cc7f7b8 74 "lora-rf-switch-ctl2": "NC",
Wayne Roberts 0:2e040cc7f7b8 75 "lora-txctl": "NC",
Wayne Roberts 0:2e040cc7f7b8 76 "lora-rxctl": "NC",
Wayne Roberts 0:2e040cc7f7b8 77 "lora-ant-switch": "A4",
Wayne Roberts 0:2e040cc7f7b8 78 "lora-pwr-amp-ctl": "NC",
Wayne Roberts 0:2e040cc7f7b8 79 "lora-tcxo": "NC"
Wayne Roberts 0:2e040cc7f7b8 80 },
Wayne Roberts 0:2e040cc7f7b8 81
Wayne Roberts 0:2e040cc7f7b8 82 "DISCO_L072CZ_LRWAN1": {
Wayne Roberts 0:2e040cc7f7b8 83 "main_stack_size": 1024,
Wayne Roberts 0:2e040cc7f7b8 84 "lora-radio": "SX1276",
Wayne Roberts 0:2e040cc7f7b8 85 "lora-spi-mosi": "PA_7",
Wayne Roberts 0:2e040cc7f7b8 86 "lora-spi-miso": "PA_6",
Wayne Roberts 0:2e040cc7f7b8 87 "lora-spi-sclk": "PB_3",
Wayne Roberts 0:2e040cc7f7b8 88 "lora-cs": "PA_15",
Wayne Roberts 0:2e040cc7f7b8 89 "lora-reset": "PC_0",
Wayne Roberts 0:2e040cc7f7b8 90 "lora-dio0": "PB_4",
Wayne Roberts 0:2e040cc7f7b8 91 "lora-dio1": "PB_1",
Wayne Roberts 0:2e040cc7f7b8 92 "lora-dio2": "PB_0",
Wayne Roberts 0:2e040cc7f7b8 93 "lora-dio3": "PC_13",
Wayne Roberts 0:2e040cc7f7b8 94 "lora-dio4": "NC",
Wayne Roberts 0:2e040cc7f7b8 95 "lora-dio5": "NC",
Wayne Roberts 0:2e040cc7f7b8 96 "lora-rf-switch-ctl1": "NC",
Wayne Roberts 0:2e040cc7f7b8 97 "lora-rf-switch-ctl2": "NC",
Wayne Roberts 0:2e040cc7f7b8 98 "lora-txctl": "PC_2",
Wayne Roberts 0:2e040cc7f7b8 99 "lora-rxctl": "PA_1",
Wayne Roberts 0:2e040cc7f7b8 100 "lora-ant-switch": "NC",
Wayne Roberts 0:2e040cc7f7b8 101 "lora-pwr-amp-ctl": "PC_1",
Wayne Roberts 0:2e040cc7f7b8 102 "lora-tcxo": "PA_12"
Wayne Roberts 0:2e040cc7f7b8 103 },
Wayne Roberts 0:2e040cc7f7b8 104
Wayne Roberts 0:2e040cc7f7b8 105 "MTB_MURATA_ABZ": {
Wayne Roberts 0:2e040cc7f7b8 106 "main_stack_size": 1024,
Wayne Roberts 0:2e040cc7f7b8 107 "lora-radio": "SX1276",
Wayne Roberts 0:2e040cc7f7b8 108 "lora-spi-mosi": "PA_7",
Wayne Roberts 0:2e040cc7f7b8 109 "lora-spi-miso": "PA_6",
Wayne Roberts 0:2e040cc7f7b8 110 "lora-spi-sclk": "PB_3",
Wayne Roberts 0:2e040cc7f7b8 111 "lora-cs": "PA_15",
Wayne Roberts 0:2e040cc7f7b8 112 "lora-reset": "PC_0",
Wayne Roberts 0:2e040cc7f7b8 113 "lora-dio0": "PB_4",
Wayne Roberts 0:2e040cc7f7b8 114 "lora-dio1": "PB_1",
Wayne Roberts 0:2e040cc7f7b8 115 "lora-dio2": "PB_0",
Wayne Roberts 0:2e040cc7f7b8 116 "lora-dio3": "PC_13",
Wayne Roberts 0:2e040cc7f7b8 117 "lora-dio4": "NC",
Wayne Roberts 0:2e040cc7f7b8 118 "lora-dio5": "NC",
Wayne Roberts 0:2e040cc7f7b8 119 "lora-rf-switch-ctl1": "NC",
Wayne Roberts 0:2e040cc7f7b8 120 "lora-rf-switch-ctl2": "NC",
Wayne Roberts 0:2e040cc7f7b8 121 "lora-txctl": "PC_2",
Wayne Roberts 0:2e040cc7f7b8 122 "lora-rxctl": "PA_1",
Wayne Roberts 0:2e040cc7f7b8 123 "lora-ant-switch": "NC",
Wayne Roberts 0:2e040cc7f7b8 124 "lora-pwr-amp-ctl": "PC_1",
Wayne Roberts 0:2e040cc7f7b8 125 "lora-tcxo": "PA_12"
Wayne Roberts 0:2e040cc7f7b8 126 },
Wayne Roberts 0:2e040cc7f7b8 127
Wayne Roberts 0:2e040cc7f7b8 128 "XDOT_L151CC": {
Wayne Roberts 0:2e040cc7f7b8 129 "lora-radio": "SX1272",
Wayne Roberts 0:2e040cc7f7b8 130 "lora-spi-mosi": "LORA_MOSI",
Wayne Roberts 0:2e040cc7f7b8 131 "lora-spi-miso": "LORA_MISO",
Wayne Roberts 0:2e040cc7f7b8 132 "lora-spi-sclk": "LORA_SCK",
Wayne Roberts 0:2e040cc7f7b8 133 "lora-cs": "LORA_NSS",
Wayne Roberts 0:2e040cc7f7b8 134 "lora-reset": "LORA_RESET",
Wayne Roberts 0:2e040cc7f7b8 135 "lora-dio0": "LORA_DIO0",
Wayne Roberts 0:2e040cc7f7b8 136 "lora-dio1": "LORA_DIO1",
Wayne Roberts 0:2e040cc7f7b8 137 "lora-dio2": "LORA_DIO2",
Wayne Roberts 0:2e040cc7f7b8 138 "lora-dio3": "LORA_DIO3",
Wayne Roberts 0:2e040cc7f7b8 139 "lora-dio4": "LORA_DIO4",
Wayne Roberts 0:2e040cc7f7b8 140 "lora-dio5": "NC",
Wayne Roberts 0:2e040cc7f7b8 141 "lora-rf-switch-ctl1": "NC",
Wayne Roberts 0:2e040cc7f7b8 142 "lora-rf-switch-ctl2": "NC",
Wayne Roberts 0:2e040cc7f7b8 143 "lora-txctl": "NC",
Wayne Roberts 0:2e040cc7f7b8 144 "lora-rxctl": "NC",
Wayne Roberts 0:2e040cc7f7b8 145 "lora-ant-switch": "NC",
Wayne Roberts 0:2e040cc7f7b8 146 "lora-pwr-amp-ctl": "NC",
Wayne Roberts 0:2e040cc7f7b8 147 "lora-tcxo": "NC"
Wayne Roberts 0:2e040cc7f7b8 148 },
Wayne Roberts 0:2e040cc7f7b8 149
Wayne Roberts 0:2e040cc7f7b8 150 "MTB_MTS_XDOT": {
Wayne Roberts 0:2e040cc7f7b8 151 "lora-radio": "SX1272",
Wayne Roberts 0:2e040cc7f7b8 152 "lora-spi-mosi": "LORA_MOSI",
Wayne Roberts 0:2e040cc7f7b8 153 "lora-spi-miso": "LORA_MISO",
Wayne Roberts 0:2e040cc7f7b8 154 "lora-spi-sclk": "LORA_SCK",
Wayne Roberts 0:2e040cc7f7b8 155 "lora-cs": "LORA_NSS",
Wayne Roberts 0:2e040cc7f7b8 156 "lora-reset": "LORA_RESET",
Wayne Roberts 0:2e040cc7f7b8 157 "lora-dio0": "LORA_DIO0",
Wayne Roberts 0:2e040cc7f7b8 158 "lora-dio1": "LORA_DIO1",
Wayne Roberts 0:2e040cc7f7b8 159 "lora-dio2": "LORA_DIO2",
Wayne Roberts 0:2e040cc7f7b8 160 "lora-dio3": "LORA_DIO3",
Wayne Roberts 0:2e040cc7f7b8 161 "lora-dio4": "LORA_DIO4",
Wayne Roberts 0:2e040cc7f7b8 162 "lora-dio5": "NC",
Wayne Roberts 0:2e040cc7f7b8 163 "lora-rf-switch-ctl1": "NC",
Wayne Roberts 0:2e040cc7f7b8 164 "lora-rf-switch-ctl2": "NC",
Wayne Roberts 0:2e040cc7f7b8 165 "lora-txctl": "NC",
Wayne Roberts 0:2e040cc7f7b8 166 "lora-rxctl": "NC",
Wayne Roberts 0:2e040cc7f7b8 167 "lora-ant-switch": "NC",
Wayne Roberts 0:2e040cc7f7b8 168 "lora-pwr-amp-ctl": "NC",
Wayne Roberts 0:2e040cc7f7b8 169 "lora-tcxo": "NC"
Wayne Roberts 0:2e040cc7f7b8 170 },
Wayne Roberts 0:2e040cc7f7b8 171
Wayne Roberts 0:2e040cc7f7b8 172 "FF1705_L151CC": {
Wayne Roberts 0:2e040cc7f7b8 173 "lora-radio": "SX1272",
Wayne Roberts 0:2e040cc7f7b8 174 "lora-spi-mosi": "LORA_MOSI",
Wayne Roberts 0:2e040cc7f7b8 175 "lora-spi-miso": "LORA_MISO",
Wayne Roberts 0:2e040cc7f7b8 176 "lora-spi-sclk": "LORA_SCK",
Wayne Roberts 0:2e040cc7f7b8 177 "lora-cs": "LORA_NSS",
Wayne Roberts 0:2e040cc7f7b8 178 "lora-reset": "LORA_RESET",
Wayne Roberts 0:2e040cc7f7b8 179 "lora-dio0": "LORA_DIO0",
Wayne Roberts 0:2e040cc7f7b8 180 "lora-dio1": "LORA_DIO1",
Wayne Roberts 0:2e040cc7f7b8 181 "lora-dio2": "LORA_DIO2",
Wayne Roberts 0:2e040cc7f7b8 182 "lora-dio3": "LORA_DIO3",
Wayne Roberts 0:2e040cc7f7b8 183 "lora-dio4": "LORA_DIO4",
Wayne Roberts 0:2e040cc7f7b8 184 "lora-dio5": "NC",
Wayne Roberts 0:2e040cc7f7b8 185 "lora-rf-switch-ctl1": "NC",
Wayne Roberts 0:2e040cc7f7b8 186 "lora-rf-switch-ctl2": "NC",
Wayne Roberts 0:2e040cc7f7b8 187 "lora-txctl": "NC",
Wayne Roberts 0:2e040cc7f7b8 188 "lora-rxctl": "NC",
Wayne Roberts 0:2e040cc7f7b8 189 "lora-ant-switch": "NC",
Wayne Roberts 0:2e040cc7f7b8 190 "lora-pwr-amp-ctl": "NC",
Wayne Roberts 0:2e040cc7f7b8 191 "lora-tcxo": "NC"
Wayne Roberts 0:2e040cc7f7b8 192 },
Wayne Roberts 0:2e040cc7f7b8 193
Wayne Roberts 0:2e040cc7f7b8 194 "MTS_MDOT_F411RE": {
Wayne Roberts 0:2e040cc7f7b8 195 "lora-radio": "SX1272",
Wayne Roberts 0:2e040cc7f7b8 196 "lora-spi-mosi": "LORA_MOSI",
Wayne Roberts 0:2e040cc7f7b8 197 "lora-spi-miso": "LORA_MISO",
Wayne Roberts 0:2e040cc7f7b8 198 "lora-spi-sclk": "LORA_SCK",
Wayne Roberts 0:2e040cc7f7b8 199 "lora-cs": "LORA_NSS",
Wayne Roberts 0:2e040cc7f7b8 200 "lora-reset": "LORA_RESET",
Wayne Roberts 0:2e040cc7f7b8 201 "lora-dio0": "LORA_DIO0",
Wayne Roberts 0:2e040cc7f7b8 202 "lora-dio1": "LORA_DIO1",
Wayne Roberts 0:2e040cc7f7b8 203 "lora-dio2": "LORA_DIO2",
Wayne Roberts 0:2e040cc7f7b8 204 "lora-dio3": "LORA_DIO3",
Wayne Roberts 0:2e040cc7f7b8 205 "lora-dio4": "LORA_DIO4",
Wayne Roberts 0:2e040cc7f7b8 206 "lora-dio5": "LORA_DIO5",
Wayne Roberts 0:2e040cc7f7b8 207 "lora-rf-switch-ctl1": "NC",
Wayne Roberts 0:2e040cc7f7b8 208 "lora-rf-switch-ctl2": "NC",
Wayne Roberts 0:2e040cc7f7b8 209 "lora-txctl": "LORA_TXCTL",
Wayne Roberts 0:2e040cc7f7b8 210 "lora-rxctl": "LORA_RXCTL",
Wayne Roberts 0:2e040cc7f7b8 211 "lora-ant-switch": "NC",
Wayne Roberts 0:2e040cc7f7b8 212 "lora-pwr-amp-ctl": "NC",
Wayne Roberts 0:2e040cc7f7b8 213 "lora-tcxo": "NC"
Wayne Roberts 0:2e040cc7f7b8 214 },
Wayne Roberts 0:2e040cc7f7b8 215
Wayne Roberts 0:2e040cc7f7b8 216 "MTB_ADV_WISE_1510": {
Wayne Roberts 0:2e040cc7f7b8 217 "lora-radio": "SX1276",
Wayne Roberts 0:2e040cc7f7b8 218 "lora-spi-mosi": "SPI_RF_MOSI",
Wayne Roberts 0:2e040cc7f7b8 219 "lora-spi-miso": "SPI_RF_MISO",
Wayne Roberts 0:2e040cc7f7b8 220 "lora-spi-sclk": "SPI_RF_SCK",
Wayne Roberts 0:2e040cc7f7b8 221 "lora-cs": "SPI_RF_CS",
Wayne Roberts 0:2e040cc7f7b8 222 "lora-reset": "SPI_RF_RESET",
Wayne Roberts 0:2e040cc7f7b8 223 "lora-dio0": "DIO0",
Wayne Roberts 0:2e040cc7f7b8 224 "lora-dio1": "DIO1",
Wayne Roberts 0:2e040cc7f7b8 225 "lora-dio2": "DIO2",
Wayne Roberts 0:2e040cc7f7b8 226 "lora-dio3": "DIO3",
Wayne Roberts 0:2e040cc7f7b8 227 "lora-dio4": "DIO4",
Wayne Roberts 0:2e040cc7f7b8 228 "lora-dio5": "DIO5",
Wayne Roberts 0:2e040cc7f7b8 229 "lora-rf-switch-ctl1": "NC",
Wayne Roberts 0:2e040cc7f7b8 230 "lora-rf-switch-ctl2": "NC",
Wayne Roberts 0:2e040cc7f7b8 231 "lora-txctl": "NC",
Wayne Roberts 0:2e040cc7f7b8 232 "lora-rxctl": "NC",
Wayne Roberts 0:2e040cc7f7b8 233 "lora-ant-switch": "ANT_SWITCH",
Wayne Roberts 0:2e040cc7f7b8 234 "lora-pwr-amp-ctl": "NC",
Wayne Roberts 0:2e040cc7f7b8 235 "lora-tcxo": "NC"
Wayne Roberts 0:2e040cc7f7b8 236 },
Wayne Roberts 0:2e040cc7f7b8 237
Wayne Roberts 0:2e040cc7f7b8 238 "MTB_RAK811": {
Wayne Roberts 0:2e040cc7f7b8 239 "lora-radio": "SX1276",
Wayne Roberts 0:2e040cc7f7b8 240 "lora-spi-mosi": "SPI_RF_MOSI",
Wayne Roberts 0:2e040cc7f7b8 241 "lora-spi-miso": "SPI_RF_MISO",
Wayne Roberts 0:2e040cc7f7b8 242 "lora-spi-sclk": "SPI_RF_SCK",
Wayne Roberts 0:2e040cc7f7b8 243 "lora-cs": "SPI_RF_CS",
Wayne Roberts 0:2e040cc7f7b8 244 "lora-reset": "SPI_RF_RESET",
Wayne Roberts 0:2e040cc7f7b8 245 "lora-dio0": "DIO0",
Wayne Roberts 0:2e040cc7f7b8 246 "lora-dio1": "DIO1",
Wayne Roberts 0:2e040cc7f7b8 247 "lora-dio2": "DIO2",
Wayne Roberts 0:2e040cc7f7b8 248 "lora-dio3": "DIO3",
Wayne Roberts 0:2e040cc7f7b8 249 "lora-dio4": "DIO4",
Wayne Roberts 0:2e040cc7f7b8 250 "lora-dio5": "NC",
Wayne Roberts 0:2e040cc7f7b8 251 "lora-rf-switch-ctl1": "NC",
Wayne Roberts 0:2e040cc7f7b8 252 "lora-rf-switch-ctl2": "NC",
Wayne Roberts 0:2e040cc7f7b8 253 "lora-txctl": "ANT_CTX_PA",
Wayne Roberts 0:2e040cc7f7b8 254 "lora-rxctl": "ANT_CRX_RX",
Wayne Roberts 0:2e040cc7f7b8 255 "lora-ant-switch": "NC",
Wayne Roberts 0:2e040cc7f7b8 256 "lora-pwr-amp-ctl": "NC",
Wayne Roberts 0:2e040cc7f7b8 257 "lora-tcxo": "RF_TCXO_EN"
Wayne Roberts 0:2e040cc7f7b8 258 }
Wayne Roberts 0:2e040cc7f7b8 259 },
Wayne Roberts 0:2e040cc7f7b8 260 "macros": ["MBEDTLS_USER_CONFIG_FILE=\"mbedtls_lora_config.h\""]
Wayne Roberts 0:2e040cc7f7b8 261 }