Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: libmDot-Custom MTS-Serial
Fork of mDot_AT_firmware_CUSTOM by
To change channel plans replace AS923 with AU915, EU868, KR920 or US915 on line 15
#define CHANNEL_PLAN CP_AS923
Diff: CommandTerminal/Commands.h
- Revision:
- 15:36db31c18231
- Parent:
- 12:98445fa50cd3
--- a/CommandTerminal/Commands.h Mon Aug 29 10:05:41 2016 -0500 +++ b/CommandTerminal/Commands.h Wed Aug 31 11:57:27 2016 -0500 @@ -1,3 +1,6 @@ +#ifndef __COMMANDS_H__ +#define __COMMANDS_H__ + #include "Command.h" #include "CmdDummy.h" @@ -9,6 +12,7 @@ // #include "CmdFactoryDefault.h" #include "CmdSaveConfig.h" +#include "CmdWriteProtectedConfig.h" #include "CmdDisplayConfig.h" #include "CmdDisplayStats.h" #include "CmdResetStats.h" @@ -36,6 +40,10 @@ #include "CmdJoinByteOrder.h" #include "CmdJoinRetries.h" #include "CmdJoinDelay.h" +// Remove join settings commands until valid case for changing default settings +//#include "CmdJoinRx1Offset.h" +//#include "CmdJoinRx2Datarate.h" +//#include "CmdJoinRx2Frequency.h" #include "CmdNetworkJoinMode.h" #include "CmdPreserveSession.h" #include "CmdNetworkJoinStatus.h" @@ -48,6 +56,7 @@ #include "CmdDataPending.h" #include "CmdSessionDataRate.h" +#include "CmdChannelMask.h" #include "CmdTxDataRate.h" #include "CmdAntennaGain.h" @@ -69,6 +78,7 @@ #include "CmdACKAttempts.h" #include "CmdRepeat.h" +#include "CmdMacCmd.h" #include "CmdSendString.h" #include "CmdSendBinary.h" #include "CmdSendStringOnInterval.h" @@ -87,10 +97,18 @@ #include "CmdLogLevel.h" // Radio debug commands - #include "CmdTxFrequency.h" #include "CmdRxDataRate.h" #include "CmdRxFrequency.h" +#include "CmdDumpRegisters.h" +#include "CmdEraseFlash.h" #include "CmdSendContinuous.h" +#include "CmdDisableDutyCycle.h" +#endif // __COMMANDS_H__ + +#ifdef MTS_RADIO_DEBUG_COMMANDS +#define NO_OF_COMMANDS 91 +#else #define NO_OF_COMMANDS 85 +#endif