RuiXingHengFang Network Co. Ltd. 76052 ユーザーズマニュアル

ページ / 44
V2.6 2015-12-03
www.risinghf.com
LoRaWAN Module RHF76-052 User Manual
RisingHF
21
8.10.2 Customized Data Rate Scheme
In order to provide maximum flexibility to define data rate, this customized data rate scheme feature is
added from firmware v1.8.0.
Define a new data rate:
AT+DR=CUSTOM, DRx, SFx, BW, [DRx (RXWin1)]
Note: [DRx (RXWin1)] is optional parameter, which could be used to specify an RXWin1 data rate for a
predefined data rate. For example, “AT+DR=CUSTOM, DR0, SF10, 500, DR4” will map DR0 and DR4, this
means when sending a message use DR0, RXWIN1 will set DR11 to receive downlink. This feature is
useful when downlink output power is higher than uplink, in this situation, it is reasonable to use higher
data rate and still keep uplink budget and downlink budget balance, and make whole network high
efficient. If absent, RXWIN1 data rate will be set to the same as uplink data rate in default.
Set data rate to RFU (Reserve For Use)
AT+DR=CUSTOM, DRx, RFU
Example:
// Set DR0 to SF7 and BW125KHz
AT+DR=CUSTOM, DR0, SF7, 125
Return:
+DR: CUSTOM DR0 SF7 BW125K
//By default downlink DR is the same as uplink DR
Example:
// Set DR0 to SF9 and BW500KHz, and map DR0 (uplink) with DR11 (downlink).
AT+DR=CUSTOM, DR3, SF10, 500, DR4
Return:
+DR: CUSTOM DR3 SF10 BW500K DLDR4
Example:
// Set DR0 to FSK 50kpbs
AT+DR=CUSTOM,DR0,FSK
Return:
+DR: CUSTOM DR0 FSK 50kbps
Example:
// Set DR0 to FSK 50kpbs, and map DR0 with DR5,
// Note: [BW] parameter should be set to 0 or any other integer.
AT+DR=CUSTOM,DR0,FSK,
0
,DR5
Return:
+DR: CUSTOM DR0 FSK 50kbps
Example:
// Set DR0 to RFU
AT+DR=CUSTOM, DR0, RFU