Skip to content

Commit 13f274a

Browse files
vendor: ezurio: Add RS26x AU915 and AS923 regions (#968)
Co-authored-by: Jaime Trinidad <81958808+Jaime-Trinidad@users.noreply.github.com>
1 parent 13cfd6e commit 13f274a

File tree

5 files changed

+77
-0
lines changed

5 files changed

+77
-0
lines changed

vendor/ezurio/rs26x-ext-rtd-temp-sensor.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,23 @@ firmwareVersions:
1818
# LoRaWAN Device Profiles per region
1919
# Supported regions are EU863-870, US902-928, AU915-928, AS923, CN779-787, EU433, CN470-510, KR920-923, IN865-867, RU864-870
2020
profiles:
21+
AS923:
22+
# Unique identifier of the profile (lowercase, alphanumeric with dashes, max 36 characters)
23+
id: rs26x-sensor-profile-as923
24+
lorawanCertified: false
25+
codec: rs26x-ext-rtd-temp-sensor-codec
26+
AU915-928:
27+
# Unique identifier of the profile (lowercase, alphanumeric with dashes, max 36 characters)
28+
id: rs26x-sensor-profile-au915
29+
lorawanCertified: false
30+
codec: rs26x-ext-rtd-temp-sensor-codec
2131
EU863-870:
2232
# Unique identifier of the profile (lowercase, alphanumeric with dashes, max 36 characters)
2333
id: rs26x-sensor-profile-eu868
2434
lorawanCertified: false
2535
codec: rs26x-ext-rtd-temp-sensor-codec
2636
US902-928:
37+
# Unique identifier of the profile (lowercase, alphanumeric with dashes, max 36 characters)
2738
id: rs26x-sensor-profile-us915
2839
lorawanCertified: false
2940
codec: rs26x-ext-rtd-temp-sensor-codec

vendor/ezurio/rs26x-ext-therm-temp-sensor.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,23 @@ firmwareVersions:
1818
# LoRaWAN Device Profiles per region
1919
# Supported regions are EU863-870, US902-928, AU915-928, AS923, CN779-787, EU433, CN470-510, KR920-923, IN865-867, RU864-870
2020
profiles:
21+
AS923:
22+
# Unique identifier of the profile (lowercase, alphanumeric with dashes, max 36 characters)
23+
id: rs26x-sensor-profile-as923
24+
lorawanCertified: false
25+
codec: rs26x-ext-therm-temp-sensor-codec
26+
AU915-928:
27+
# Unique identifier of the profile (lowercase, alphanumeric with dashes, max 36 characters)
28+
id: rs26x-sensor-profile-au915
29+
lorawanCertified: false
30+
codec: rs26x-ext-therm-temp-sensor-codec
2131
EU863-870:
2232
# Unique identifier of the profile (lowercase, alphanumeric with dashes, max 36 characters)
2333
id: rs26x-sensor-profile-eu868
2434
lorawanCertified: false
2535
codec: rs26x-ext-therm-temp-sensor-codec
2636
US902-928:
37+
# Unique identifier of the profile (lowercase, alphanumeric with dashes, max 36 characters)
2738
id: rs26x-sensor-profile-us915
2839
lorawanCertified: false
2940
codec: rs26x-ext-therm-temp-sensor-codec

vendor/ezurio/rs26x-int-temp-sensor.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,23 @@ firmwareVersions:
1818
# LoRaWAN Device Profiles per region
1919
# Supported regions are EU863-870, US902-928, AU915-928, AS923, CN779-787, EU433, CN470-510, KR920-923, IN865-867, RU864-870
2020
profiles:
21+
AS923:
22+
# Unique identifier of the profile (lowercase, alphanumeric with dashes, max 36 characters)
23+
id: rs26x-sensor-profile-as923
24+
lorawanCertified: false
25+
codec: rs26x-int-temp-sensor-codec
26+
AU915-928:
27+
# Unique identifier of the profile (lowercase, alphanumeric with dashes, max 36 characters)
28+
id: rs26x-sensor-profile-au915
29+
lorawanCertified: false
30+
codec: rs26x-int-temp-sensor-codec
2131
EU863-870:
2232
# Unique identifier of the profile (lowercase, alphanumeric with dashes, max 36 characters)
2333
id: rs26x-sensor-profile-eu868
2434
lorawanCertified: false
2535
codec: rs26x-int-temp-sensor-codec
2636
US902-928:
37+
# Unique identifier of the profile (lowercase, alphanumeric with dashes, max 36 characters)
2738
id: rs26x-sensor-profile-us915
2839
lorawanCertified: false
2940
codec: rs26x-int-temp-sensor-codec
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Whether the end device supports class B
2+
supportsClassB: false
3+
# Whether the end device supports class C
4+
supportsClassC: false
5+
# LoRaWAN MAC version: 1.0, 1.0.1, 1.0.2, 1.0.3, 1.0.4 or 1.1
6+
macVersion: 1.0.4
7+
# LoRaWAN Regional Parameters version. Values depend on the LoRaWAN version:
8+
# 1.0: TS001-1.0
9+
# 1.0.1: TS001-1.0.1
10+
# 1.0.2: RP001-1.0.2 or RP001-1.0.2-RevB
11+
# 1.0.3: RP001-1.0.3-RevA
12+
# 1.0.4: RP002-1.0.0 or RP002-1.0.1
13+
# 1.1: RP001-1.1-RevA or RP001-1.1-RevB
14+
regionalParametersVersion: RP002-1.0.3
15+
# Whether the end device supports join (OTAA) or not (ABP)
16+
supportsJoin: true
17+
# Maximum EIRP
18+
maxEIRP: 15
19+
# Whether the end device supports 32-bit frame counters
20+
supports32bitFCnt: true
21+
# RX1 delay
22+
rx1Delay: 1
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Whether the end device supports class B
2+
supportsClassB: false
3+
# Whether the end device supports class C
4+
supportsClassC: false
5+
# LoRaWAN MAC version: 1.0, 1.0.1, 1.0.2, 1.0.3, 1.0.4 or 1.1
6+
macVersion: 1.0.4
7+
# LoRaWAN Regional Parameters version. Values depend on the LoRaWAN version:
8+
# 1.0: TS001-1.0
9+
# 1.0.1: TS001-1.0.1
10+
# 1.0.2: RP001-1.0.2 or RP001-1.0.2-RevB
11+
# 1.0.3: RP001-1.0.3-RevA
12+
# 1.0.4: RP002-1.0.0 or RP002-1.0.1
13+
# 1.1: RP001-1.1-RevA or RP001-1.1-RevB
14+
regionalParametersVersion: RP002-1.0.3
15+
# Whether the end device supports join (OTAA) or not (ABP)
16+
supportsJoin: true
17+
# Maximum EIRP
18+
maxEIRP: 24
19+
# Whether the end device supports 32-bit frame counters
20+
supports32bitFCnt: true
21+
# RX1 delay
22+
rx1Delay: 1

0 commit comments

Comments
 (0)