Elmo Terminal provides functionality to test Lora radio and access SX1272 chip registers delivered with Elmo board. Also contains example ping-pong application.

Dependencies:   SX1272lib mbed-src

Committer:
WGorniak
Date:
Thu Oct 01 13:13:08 2015 +0000
Revision:
6:453b018a9ba0
Parent:
2:8d8295a51f68
removed sstream from radiocontext

Who changed what in which revision?

UserRevisionLine numberNew 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_