forked from lorabasics/basicstation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstation.conf
30 lines (29 loc) · 1.03 KB
/
station.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
/* If slave-X.conf present this acts as default settings */
"SX1301_conf": { /* Actual channel plan is controlled by server */
"lorawan_public": true, /* is default */
"clksrc": 1, /* radio_1 provides clock to concentrator */
"device": "spidev",
"radio_0": {
/* freq/enable provided by LNS - only HW specific settings listed here */
"type": "SX1257",
"rssi_offset": -166.0,
"tx_enable": true,
"antenna_gain": 0
},
"radio_1": {
"type": "SX1257",
"rssi_offset": -166.0,
"tx_enable": false
}
/* chan_multiSF_X, chan_Lora_std, chan_FSK provided by LNS */
},
"station_conf": {
"routerid": "::1",
"euiprefix": "::0",
"log_file": "stderr", /* "station.log" */
"log_level": "VERBOSE", /* XDEBUG,DEBUG,VERBOSE,INFO,NOTICE,WARNING,ERROR,CRITICAL */
"log_size": 10000000,
"log_rotate": 3
}
}