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: SX1272lib mbed-src
Commands/GetVariableCmd.h@2:8d8295a51f68, 2015-10-01 (annotated)
- Committer:
- WGorniak
- Date:
- Thu Oct 01 09:40:30 2015 +0200
- Revision:
- 2:8d8295a51f68
added terminal app
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
WGorniak | 2:8d8295a51f68 | 1 | #ifndef _GETVARIABLECMD_H_ |
WGorniak | 2:8d8295a51f68 | 2 | #define _GETVARIABLECMD_H_ |
WGorniak | 2:8d8295a51f68 | 3 | |
WGorniak | 2:8d8295a51f68 | 4 | #include "Cmd.h" |
WGorniak | 2:8d8295a51f68 | 5 | |
WGorniak | 2:8d8295a51f68 | 6 | class Settings; |
WGorniak | 2:8d8295a51f68 | 7 | |
WGorniak | 2:8d8295a51f68 | 8 | class GetVariableCmd : public Cmd |
WGorniak | 2:8d8295a51f68 | 9 | { |
WGorniak | 2:8d8295a51f68 | 10 | public: |
WGorniak | 2:8d8295a51f68 | 11 | GetVariableCmd(Settings* settings); |
WGorniak | 2:8d8295a51f68 | 12 | virtual ~GetVariableCmd(); |
WGorniak | 2:8d8295a51f68 | 13 | |
WGorniak | 2:8d8295a51f68 | 14 | static string cmd(); |
WGorniak | 2:8d8295a51f68 | 15 | static string desc(); |
WGorniak | 2:8d8295a51f68 | 16 | |
WGorniak | 2:8d8295a51f68 | 17 | virtual bool execute(list<string> args); |
WGorniak | 2:8d8295a51f68 | 18 | virtual string getResponse(void); |
WGorniak | 2:8d8295a51f68 | 19 | |
WGorniak | 2:8d8295a51f68 | 20 | private: |
WGorniak | 2:8d8295a51f68 | 21 | Settings* settings_; |
WGorniak | 2:8d8295a51f68 | 22 | }; |
WGorniak | 2:8d8295a51f68 | 23 | |
WGorniak | 2:8d8295a51f68 | 24 | #endif // _GETVARIABLECMD_H_ |