You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+22-15Lines changed: 22 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -102,21 +102,30 @@ max-eirp: 29.15 # Maximum EIRP (optional; used when sub-bands do
102
102
103
103
An index of frequency plans is in `frequency-plans.yml`. This can take two forms depending on if it is a root frequency plan definition, or if it is a plan definition that modifies an existing plan.
104
104
105
-
Root definition
105
+
Base plan definition
106
106
```yml
107
-
- id: EU_863_870_TTN # ID of the frequency plan
108
-
band-id: EU_863_870 # ID of the LoRaWAN band (needs to match band-id in the definition)
109
-
name: Region 863-870 MHz # Name of the frequency plan, ending with frequency ranges
110
-
description: Default frequency plan for Europe # Description of the frequency plan
111
-
base-frequency: 868 # Base frequency in MHz for hardware support (433, 470, 868, 915 or 2450)
112
-
country-codes: [] # List of 2-digit ISO country codes for countries where this plan can be used
113
-
device-file: end-device/EU_863_870.yml # File of the freqeuency plan definition
114
-
gateway-file: gateway/EU_863_870.yml
115
-
phy-versions: []
116
-
endorsed: true
107
+
end-device-descriptions:
108
+
- id: EU_863_870 # ID of the frequency plan
109
+
band-id: EU_863_870 # ID of the LoRaWAN band (needs to match band-id in the definition)
110
+
name: Region 863-870 MHz # Name of the frequency plan, ending with frequency ranges
111
+
description: Default frequency plan for Europe # Description of the frequency plan
112
+
base-frequency: 868 # Base frequency in MHz for hardware support (433, 470, 868, 915 or 2450)
113
+
country-codes: [] # List of 2-digit ISO country codes for countries where this plan can be used
114
+
file: EU_863_870.yml # Filename of the plan residing in the `end-device` folder
115
+
endorsed: true
116
+
117
+
gateway-descriptions:
118
+
- id: EU_863_870 # ID of the frequency plan
119
+
band-id: EU_863_870 # ID of the LoRaWAN band (needs to match band-id in the definition)
120
+
name: Region 863-870 MHz # Name of the frequency plan, ending with frequency ranges
121
+
description: Default frequency plan for Europe # Description of the frequency plan
122
+
base-frequency: 868# Base frequency in MHz for hardware support (433, 470, 868, 915 or 2450)
123
+
country-codes: [] # List of 2-digit ISO country codes for countries where this plan can be used
124
+
file: EU_863_870.yml # Filename of the plan residing in the `gateway` folder
125
+
endorsed: true
117
126
```
118
127
119
-
Modifying definition
128
+
Inherited definition
120
129
```yml
121
130
- id: EU_863_870_TTN # ID of the frequency plan
122
131
band-id: EU_863_870 # ID of the LoRaWAN band (needs to match band-id in the definition)
@@ -125,9 +134,7 @@ Modifying definition
125
134
description: Default frequency plan for Europe # Description of the frequency plan
126
135
base-frequency: 868# Base frequency in MHz for hardware support (433, 470, 868, 915 or 2450)
127
136
country-codes: [] # List of 2-digit ISO country codes for countries where this plan can be used
128
-
device-modifiers: []
129
-
gateway-modifiers: []
130
-
phy-versions: []
137
+
modifiers: [] # Filename of the modifier residing in the respective `end-device/modifiers` or `gateway/modifiers` folder.
0 commit comments