Skip to content

Commit

Permalink
Issue #102: Clarify RX2 in the documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
gotthardp committed May 25, 2017
1 parent 4147bde commit 10152e8
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions doc/Communication.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,43 @@ Upon receiving a downlink frame for a given Node:
and waits for the Node to send a next uplink. The queued *Downlinks* can
be viewed via the [Node Administration](Nodes.md).

The server uses the standard downlink frequencies and data rates. To modify the
RX2 parameters you need to add a `regions` section into your
`lorawan-server/releases/<VERSION>/sys.config` and modify it accordingly. The
default values are:

```erlang
{regions, [
{<<"EU863-870">>, [
% default RX2 frequency (MHz) and data rate (DRx)
{rx2_rf, {869.525, <<"SF12BW125">>}}
]},
{<<"US902-928">>, [
{rx2_rf, {923.3, <<"SF12BW500">>}}
]},
% Multitech Private Hybrid Mode
% http://www.multitech.net/developer/software/lora/introduction-to-lora
{<<"US902-928-PR">>, [
{rx2_rf, {undefined, <<"SF12BW500">>}}
]},
{<<"CN779-787">>, [
{rx2_rf, {786, <<"SF12BW125">>}}
]},
{<<"EU433">>, [
{rx2_rf, {434.665, <<"SF12BW125">>}}
]},
{<<"AU915-928">>, [
{rx2_rf, {923.3, <<"SF12BW500">>}}
]},
{<<"CN470-510">>, [
{rx2_rf, {505.3, <<"SF12BW125">>}}
]},
{<<"KR920-923">>, [
{rx2_rf, {921.9, <<"SF12BW125">>}}
]}
]},
```

### Class B

Currently not supported.
Expand Down

0 comments on commit 10152e8

Please sign in to comment.