MultiTech / mDot_Channel_Plans

The channel plans in this library can be used as starting points for new channel plans and used as a reference for implementation.

Information

To use source version of a channel plan, first remove the Channel Plans folder from libmDot-Custom library.

Not all plans are complete to LoRaWAN specifications.

AS923 and KR920 have the default channels defined and can accept in channels in the Join Accept message or from New Channel MAC commands.

Channel Set must match those expected by the network server in order for ADR to work

AS923 regional settings can be adjusted by the network server using Tx Param Setup MAC command to set max EIRP and dwell time for uplinks.

Committer:
Jason Reiss
Date:
Tue Feb 07 09:00:25 2017 -0600
Revision:
13:996f1663d12e
Parent:
11:829f8c2ec1c3
Fix P2P in dynamic plans, channel 0 was being used instead of the set frequency

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jreiss 11:829f8c2ec1c3 1 #include "CustomChannelPlan_AS923.h"
jreiss 11:829f8c2ec1c3 2 #include "CustomChannelPlan_AU915.h"
jreiss 11:829f8c2ec1c3 3 #include "CustomChannelPlan_US915.h"
jreiss 11:829f8c2ec1c3 4 #include "CustomChannelPlan_EU868.h"
jreiss 11:829f8c2ec1c3 5 #include "CustomChannelPlan_KR920.h"
jreiss 11:829f8c2ec1c3 6 #include "CustomChannelPlan_NZ918.h"
jreiss 11:829f8c2ec1c3 7 #include "CustomChannelPlan_IN865.h"
jreiss 11:829f8c2ec1c3 8
jreiss 11:829f8c2ec1c3 9
jreiss 11:829f8c2ec1c3 10 #define CP_AS923 1
jreiss 11:829f8c2ec1c3 11 #define CP_AU915 2
jreiss 11:829f8c2ec1c3 12 #define CP_US915 3
jreiss 11:829f8c2ec1c3 13 #define CP_EU868 4
jreiss 11:829f8c2ec1c3 14 #define CP_KR920 5
jreiss 11:829f8c2ec1c3 15 #define CP_IN865 6