firm newest

Dependencies:   MTS-Serial libmDot-dev-mbed5-deprecated

Committer:
nguyenhoang9x5555
Date:
Thu Oct 18 04:18:48 2018 +0000
Revision:
0:3c869a8cb8f8
DOT AT FIRMWARE 18102018

Who changed what in which revision?

UserRevisionLine numberNew contents of line
nguyenhoang9x5555 0:3c869a8cb8f8 1 #ifndef __COMMANDS_H__
nguyenhoang9x5555 0:3c869a8cb8f8 2 #define __COMMANDS_H__
nguyenhoang9x5555 0:3c869a8cb8f8 3
nguyenhoang9x5555 0:3c869a8cb8f8 4 #include "Command.h"
nguyenhoang9x5555 0:3c869a8cb8f8 5 #include "CmdDummy.h"
nguyenhoang9x5555 0:3c869a8cb8f8 6
nguyenhoang9x5555 0:3c869a8cb8f8 7 #include "CmdAttention.h"
nguyenhoang9x5555 0:3c869a8cb8f8 8 #include "CmdIdentification.h"
nguyenhoang9x5555 0:3c869a8cb8f8 9 #include "CmdResetCpu.h"
nguyenhoang9x5555 0:3c869a8cb8f8 10 // Echo built into command terminal
nguyenhoang9x5555 0:3c869a8cb8f8 11 // Verbose built into command terminal
nguyenhoang9x5555 0:3c869a8cb8f8 12 //
nguyenhoang9x5555 0:3c869a8cb8f8 13 #include "CmdFactoryDefault.h"
nguyenhoang9x5555 0:3c869a8cb8f8 14 #include "CmdSaveConfig.h"
nguyenhoang9x5555 0:3c869a8cb8f8 15 #include "CmdWriteProtectedConfig.h"
nguyenhoang9x5555 0:3c869a8cb8f8 16 #include "CmdDisplayConfig.h"
nguyenhoang9x5555 0:3c869a8cb8f8 17 #include "CmdDisplayStats.h"
nguyenhoang9x5555 0:3c869a8cb8f8 18 #include "CmdResetStats.h"
nguyenhoang9x5555 0:3c869a8cb8f8 19
nguyenhoang9x5555 0:3c869a8cb8f8 20 #include "CmdSerialBaudRate.h"
nguyenhoang9x5555 0:3c869a8cb8f8 21 #include "CmdSerialClearOnError.h"
nguyenhoang9x5555 0:3c869a8cb8f8 22 #include "CmdDebugBaudRate.h"
nguyenhoang9x5555 0:3c869a8cb8f8 23 #include "CmdStartUpMode.h"
nguyenhoang9x5555 0:3c869a8cb8f8 24
nguyenhoang9x5555 0:3c869a8cb8f8 25 #include "CmdDefaultFrequencyBand.h"
nguyenhoang9x5555 0:3c869a8cb8f8 26 #include "CmdFrequencyBand.h"
nguyenhoang9x5555 0:3c869a8cb8f8 27 #include "CmdDeviceId.h"
nguyenhoang9x5555 0:3c869a8cb8f8 28 #include "CmdDeviceClass.h"
nguyenhoang9x5555 0:3c869a8cb8f8 29 #include "CmdPublicNetwork.h"
nguyenhoang9x5555 0:3c869a8cb8f8 30 #include "CmdNetworkAddress.h"
nguyenhoang9x5555 0:3c869a8cb8f8 31 #include "CmdNetworkSessionKey.h"
nguyenhoang9x5555 0:3c869a8cb8f8 32 #include "CmdDataSessionKey.h"
nguyenhoang9x5555 0:3c869a8cb8f8 33 #include "CmdUplinkCounter.h"
nguyenhoang9x5555 0:3c869a8cb8f8 34 #include "CmdDownlinkCounter.h"
nguyenhoang9x5555 0:3c869a8cb8f8 35 #include "CmdSaveSession.h"
nguyenhoang9x5555 0:3c869a8cb8f8 36 #include "CmdRestoreSession.h"
nguyenhoang9x5555 0:3c869a8cb8f8 37 #include "CmdNetworkKey.h"
nguyenhoang9x5555 0:3c869a8cb8f8 38 #include "CmdNetworkId.h"
nguyenhoang9x5555 0:3c869a8cb8f8 39 #include "CmdAppPort.h"
nguyenhoang9x5555 0:3c869a8cb8f8 40 #include "CmdJoinRequest.h"
nguyenhoang9x5555 0:3c869a8cb8f8 41 #include "CmdJoinByteOrder.h"
nguyenhoang9x5555 0:3c869a8cb8f8 42 #include "CmdJoinRetries.h"
nguyenhoang9x5555 0:3c869a8cb8f8 43 #include "CmdJoinDelay.h"
nguyenhoang9x5555 0:3c869a8cb8f8 44 // Remove join settings commands until valid case for changing default settings
nguyenhoang9x5555 0:3c869a8cb8f8 45 //#include "CmdJoinRx1Offset.h"
nguyenhoang9x5555 0:3c869a8cb8f8 46 //#include "CmdJoinRx2Datarate.h"
nguyenhoang9x5555 0:3c869a8cb8f8 47 //#include "CmdJoinRx2Frequency.h"
nguyenhoang9x5555 0:3c869a8cb8f8 48 #include "CmdNetworkJoinMode.h"
nguyenhoang9x5555 0:3c869a8cb8f8 49 #include "CmdPreserveSession.h"
nguyenhoang9x5555 0:3c869a8cb8f8 50 #include "CmdNetworkJoinStatus.h"
nguyenhoang9x5555 0:3c869a8cb8f8 51 #include "CmdNetworkLinkCheck.h"
nguyenhoang9x5555 0:3c869a8cb8f8 52 #include "CmdLinkCheckCount.h"
nguyenhoang9x5555 0:3c869a8cb8f8 53 #include "CmdLinkCheckThreshold.h"
nguyenhoang9x5555 0:3c869a8cb8f8 54 #include "CmdEncryption.h"
nguyenhoang9x5555 0:3c869a8cb8f8 55 #include "CmdRssi.h"
nguyenhoang9x5555 0:3c869a8cb8f8 56 #include "CmdSnr.h"
nguyenhoang9x5555 0:3c869a8cb8f8 57 #include "CmdDataPending.h"
nguyenhoang9x5555 0:3c869a8cb8f8 58
nguyenhoang9x5555 0:3c869a8cb8f8 59 #include "CmdSessionDataRate.h"
nguyenhoang9x5555 0:3c869a8cb8f8 60 #include "CmdChannelMask.h"
nguyenhoang9x5555 0:3c869a8cb8f8 61
nguyenhoang9x5555 0:3c869a8cb8f8 62 #include "CmdTxDataRate.h"
nguyenhoang9x5555 0:3c869a8cb8f8 63 #include "CmdAntennaGain.h"
nguyenhoang9x5555 0:3c869a8cb8f8 64 #include "CmdTxPower.h"
nguyenhoang9x5555 0:3c869a8cb8f8 65 #include "CmdTxWait.h"
nguyenhoang9x5555 0:3c869a8cb8f8 66 #include "CmdTxInverted.h"
nguyenhoang9x5555 0:3c869a8cb8f8 67 #include "CmdTxChannel.h"
nguyenhoang9x5555 0:3c869a8cb8f8 68 #include "CmdTxNextMs.h"
nguyenhoang9x5555 0:3c869a8cb8f8 69 #include "CmdTimeOnAir.h"
nguyenhoang9x5555 0:3c869a8cb8f8 70 #include "CmdFrequencySubBand.h"
nguyenhoang9x5555 0:3c869a8cb8f8 71 #include "CmdLbt.h"
nguyenhoang9x5555 0:3c869a8cb8f8 72
nguyenhoang9x5555 0:3c869a8cb8f8 73 #include "CmdRxDelay.h"
nguyenhoang9x5555 0:3c869a8cb8f8 74 #include "CmdRxOutput.h"
nguyenhoang9x5555 0:3c869a8cb8f8 75 #include "CmdRxInverted.h"
nguyenhoang9x5555 0:3c869a8cb8f8 76
nguyenhoang9x5555 0:3c869a8cb8f8 77 #include "CmdErrorCorrection.h"
nguyenhoang9x5555 0:3c869a8cb8f8 78 #include "CmdCRC.h"
nguyenhoang9x5555 0:3c869a8cb8f8 79 #include "CmdAdaptiveDataRate.h"
nguyenhoang9x5555 0:3c869a8cb8f8 80
nguyenhoang9x5555 0:3c869a8cb8f8 81 #include "CmdACKAttempts.h"
nguyenhoang9x5555 0:3c869a8cb8f8 82 #include "CmdRepeat.h"
nguyenhoang9x5555 0:3c869a8cb8f8 83 #include "CmdMacCmd.h"
nguyenhoang9x5555 0:3c869a8cb8f8 84 #include "CmdSendString.h"
nguyenhoang9x5555 0:3c869a8cb8f8 85 #include "CmdSendBinary.h"
nguyenhoang9x5555 0:3c869a8cb8f8 86 #include "CmdSendStringOnInterval.h"
nguyenhoang9x5555 0:3c869a8cb8f8 87 #include "CmdReceiveOnce.h"
nguyenhoang9x5555 0:3c869a8cb8f8 88 #include "CmdReceiveContinuous.h"
nguyenhoang9x5555 0:3c869a8cb8f8 89 #include "CmdPing.h"
nguyenhoang9x5555 0:3c869a8cb8f8 90
nguyenhoang9x5555 0:3c869a8cb8f8 91 // Serial Data Mode built into command terminal
nguyenhoang9x5555 0:3c869a8cb8f8 92 // Sleep built into command terminal
nguyenhoang9x5555 0:3c869a8cb8f8 93 #include "CmdWakeInterval.h"
nguyenhoang9x5555 0:3c869a8cb8f8 94 #include "CmdWakePin.h"
nguyenhoang9x5555 0:3c869a8cb8f8 95 #include "CmdWakeMode.h"
nguyenhoang9x5555 0:3c869a8cb8f8 96 #include "CmdWakeDelay.h"
nguyenhoang9x5555 0:3c869a8cb8f8 97 #include "CmdWakeTimeout.h"
nguyenhoang9x5555 0:3c869a8cb8f8 98
nguyenhoang9x5555 0:3c869a8cb8f8 99 #include "CmdLogLevel.h"
nguyenhoang9x5555 0:3c869a8cb8f8 100
nguyenhoang9x5555 0:3c869a8cb8f8 101 // Radio debug commands
nguyenhoang9x5555 0:3c869a8cb8f8 102 #include "CmdTxFrequency.h"
nguyenhoang9x5555 0:3c869a8cb8f8 103 #include "CmdRxDataRate.h"
nguyenhoang9x5555 0:3c869a8cb8f8 104 #include "CmdRxFrequency.h"
nguyenhoang9x5555 0:3c869a8cb8f8 105 #include "CmdDumpRegisters.h"
nguyenhoang9x5555 0:3c869a8cb8f8 106 #include "CmdEraseFlash.h"
nguyenhoang9x5555 0:3c869a8cb8f8 107 #include "CmdSendContinuous.h"
nguyenhoang9x5555 0:3c869a8cb8f8 108 #include "CmdDisableDutyCycle.h"
nguyenhoang9x5555 0:3c869a8cb8f8 109 #include "CmdLBTRSSI.h"
nguyenhoang9x5555 0:3c869a8cb8f8 110
nguyenhoang9x5555 0:3c869a8cb8f8 111 #endif // __COMMANDS_H__
nguyenhoang9x5555 0:3c869a8cb8f8 112
nguyenhoang9x5555 0:3c869a8cb8f8 113 #ifdef MTS_RADIO_DEBUG_COMMANDS
nguyenhoang9x5555 0:3c869a8cb8f8 114 #define NO_OF_COMMANDS 92
nguyenhoang9x5555 0:3c869a8cb8f8 115 #else
nguyenhoang9x5555 0:3c869a8cb8f8 116 #define NO_OF_COMMANDS 85
nguyenhoang9x5555 0:3c869a8cb8f8 117 #endif