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: MTS-Serial libmDot-mbed5
Fork of Dot-AT-Firmware by
CommandTerminal/CmdJoinDelay.cpp@18:44972ed0654d, 2017-10-10 (annotated)
- Committer:
- alphaemmeo
- Date:
- Tue Oct 10 09:33:43 2017 +0000
- Revision:
- 18:44972ed0654d
- Parent:
- 14:f9a77400b622
testInit
Who changed what in which revision?
| User | Revision | Line number | New contents of line | 
|---|---|---|---|
| Mike Fiore | 9:ff62b20f7000 | 1 | /* | 
| Mike Fiore | 9:ff62b20f7000 | 2 | * CmdJoinDelay.cpp | 
| Mike Fiore | 9:ff62b20f7000 | 3 | * | 
| Mike Fiore | 9:ff62b20f7000 | 4 | * Created on: Nov 4, 2015 | 
| Mike Fiore | 9:ff62b20f7000 | 5 | * Author: jreiss | 
| Mike Fiore | 9:ff62b20f7000 | 6 | */ | 
| Mike Fiore | 9:ff62b20f7000 | 7 | |
| Mike Fiore | 9:ff62b20f7000 | 8 | #include "CmdJoinDelay.h" | 
| Mike Fiore | 9:ff62b20f7000 | 9 | |
| Mike Fiore | 14:f9a77400b622 | 10 | CmdJoinDelay::CmdJoinDelay() | 
| Mike Fiore | 9:ff62b20f7000 | 11 | : | 
| Mike Fiore | 14:f9a77400b622 | 12 | Command("Join Delay", "AT+JD", "Number of seconds before receive windows are opened for join (1 - 15)", "(1-15)") { | 
| Mike Fiore | 14:f9a77400b622 | 13 | |
| Mike Fiore | 9:ff62b20f7000 | 14 | _queryable = true; | 
| Mike Fiore | 9:ff62b20f7000 | 15 | } | 
| Mike Fiore | 9:ff62b20f7000 | 16 | |
| Mike Fiore | 9:ff62b20f7000 | 17 | CmdJoinDelay::~CmdJoinDelay() | 
| Mike Fiore | 9:ff62b20f7000 | 18 | { | 
| Mike Fiore | 9:ff62b20f7000 | 19 | // TODO Auto-generated destructor stub | 
| Mike Fiore | 9:ff62b20f7000 | 20 | } | 
| Mike Fiore | 9:ff62b20f7000 | 21 | |
| Mike Fiore | 9:ff62b20f7000 | 22 | uint32_t CmdJoinDelay::action(std::vector<std::string> args) { | 
| Mike Fiore | 14:f9a77400b622 | 23 | |
| Mike Fiore | 9:ff62b20f7000 | 24 | if (args.size() == 1) { | 
| Mike Fiore | 14:f9a77400b622 | 25 | CommandTerminal::Serial()->writef("%u\r\n", CommandTerminal::Dot()->getJoinDelay()); | 
| Mike Fiore | 9:ff62b20f7000 | 26 | } else if (args.size() == 2) { | 
| Mike Fiore | 9:ff62b20f7000 | 27 | uint32_t joinDelay; | 
| Mike Fiore | 9:ff62b20f7000 | 28 | sscanf(args[1].c_str(), "%lu", &joinDelay); | 
| Mike Fiore | 9:ff62b20f7000 | 29 | |
| Mike Fiore | 14:f9a77400b622 | 30 | if (CommandTerminal::Dot()->setJoinDelay(joinDelay) != mDot::MDOT_OK) { | 
| Mike Fiore | 9:ff62b20f7000 | 31 | |
| Mike Fiore | 14:f9a77400b622 | 32 | CommandTerminal::setErrorMessage(CommandTerminal::Dot()->getLastError());; | 
| Mike Fiore | 9:ff62b20f7000 | 33 | return 1; | 
| Mike Fiore | 9:ff62b20f7000 | 34 | } | 
| Mike Fiore | 9:ff62b20f7000 | 35 | } | 
| Mike Fiore | 9:ff62b20f7000 | 36 | return 0; | 
| Mike Fiore | 9:ff62b20f7000 | 37 | } | 
| Mike Fiore | 9:ff62b20f7000 | 38 | |
| Mike Fiore | 9:ff62b20f7000 | 39 | bool CmdJoinDelay::verify(std::vector<std::string> args) { | 
| Mike Fiore | 9:ff62b20f7000 | 40 | if (args.size() == 1) | 
| Mike Fiore | 9:ff62b20f7000 | 41 | return true; | 
| Mike Fiore | 9:ff62b20f7000 | 42 | |
| Mike Fiore | 9:ff62b20f7000 | 43 | if (args.size() == 2) { | 
| Mike Fiore | 9:ff62b20f7000 | 44 | |
| Mike Fiore | 9:ff62b20f7000 | 45 | int joinDelay; | 
| Mike Fiore | 9:ff62b20f7000 | 46 | if (sscanf(args[1].c_str(), "%d", &joinDelay) == 1) { | 
| Mike Fiore | 9:ff62b20f7000 | 47 | if (joinDelay > 15 || joinDelay < 1) { | 
| Mike Fiore | 14:f9a77400b622 | 48 | CommandTerminal::setErrorMessage("Invalid join delay, expects (1-15)"); | 
| Mike Fiore | 9:ff62b20f7000 | 49 | return false; | 
| Mike Fiore | 9:ff62b20f7000 | 50 | } | 
| Mike Fiore | 9:ff62b20f7000 | 51 | return true; | 
| Mike Fiore | 9:ff62b20f7000 | 52 | } | 
| Mike Fiore | 9:ff62b20f7000 | 53 | } | 
| Mike Fiore | 9:ff62b20f7000 | 54 | |
| Mike Fiore | 14:f9a77400b622 | 55 | CommandTerminal::setErrorMessage("Invalid arguments"); | 
| Mike Fiore | 9:ff62b20f7000 | 56 | return false; | 
| Mike Fiore | 9:ff62b20f7000 | 57 | } | 
