Elmo Terminal provides functionality to test Lora radio and access SX1272 chip registers delivered with Elmo board. This firmware allows the user to control the LoRa radio parameters (eg. frequency, bandwidth, spreading factor etc.) by entering console commands via serial terminal. Application also contains "Ping-Pong" and data transmission functionalities.

Dependencies:   SX1272lib mbed

Fork of Elmo-Terminal by Michal Leksinski

Committer:
WGorniak
Date:
Thu Oct 22 08:03:32 2015 +0000
Revision:
12:26045241f50f
Parent:
2:8d8295a51f68
updated sx lib

Who changed what in which revision?

UserRevisionLine numberNew contents of line
WGorniak 2:8d8295a51f68 1 #include "RadioCmd.h"
WGorniak 2:8d8295a51f68 2
WGorniak 2:8d8295a51f68 3 RadioCmd::RadioCmd(Settings* settings) :
WGorniak 2:8d8295a51f68 4 Cmd(),
WGorniak 2:8d8295a51f68 5 radioContex_(settings)
WGorniak 2:8d8295a51f68 6 {
WGorniak 2:8d8295a51f68 7 }
WGorniak 2:8d8295a51f68 8
WGorniak 2:8d8295a51f68 9 RadioCmd::~RadioCmd()
WGorniak 2:8d8295a51f68 10 {
WGorniak 2:8d8295a51f68 11 }
WGorniak 2:8d8295a51f68 12
WGorniak 2:8d8295a51f68 13 RadioContex* RadioCmd::getRadioContex()
WGorniak 2:8d8295a51f68 14 {
WGorniak 2:8d8295a51f68 15 return &radioContex_;
WGorniak 2:8d8295a51f68 16 }
WGorniak 2:8d8295a51f68 17