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
CommandTerminal/CmdSendContinuous.h@29:15b59b827ac7, 2017-03-23 (annotated)
- Committer:
- jreiss
- Date:
- Thu Mar 23 20:40:54 2017 +0000
- Revision:
- 29:15b59b827ac7
- Parent:
- 16:6b851a5e4219
update libmDot-Custom
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Jason Reiss |
16:6b851a5e4219 | 1 | |
Jason Reiss |
16:6b851a5e4219 | 2 | #ifndef __CMDSENDCONTINUOUS_H__ |
Jason Reiss |
16:6b851a5e4219 | 3 | #define __CMDSENDCONTINUOUS_H__ |
Jason Reiss |
16:6b851a5e4219 | 4 | |
Jason Reiss |
16:6b851a5e4219 | 5 | #include "Command.h" |
Jason Reiss |
16:6b851a5e4219 | 6 | |
Jason Reiss |
16:6b851a5e4219 | 7 | class CmdSendContinuous : public Command { |
Jason Reiss |
16:6b851a5e4219 | 8 | |
Jason Reiss |
16:6b851a5e4219 | 9 | public: |
Jason Reiss |
16:6b851a5e4219 | 10 | |
Jason Reiss |
16:6b851a5e4219 | 11 | CmdSendContinuous(); |
Jason Reiss |
16:6b851a5e4219 | 12 | static uint32_t action(std::vector<std::string> args); |
Jason Reiss |
16:6b851a5e4219 | 13 | static bool verify(std::vector<std::string> args); |
Jason Reiss |
16:6b851a5e4219 | 14 | |
Jason Reiss |
16:6b851a5e4219 | 15 | private: |
Jason Reiss |
16:6b851a5e4219 | 16 | |
Jason Reiss |
16:6b851a5e4219 | 17 | }; |
Jason Reiss |
16:6b851a5e4219 | 18 | |
Jason Reiss |
16:6b851a5e4219 | 19 | #endif // __CMDSENDCONTINUOUS_H__ |