From c3d181e2c45f8b4ddc6572a9834082413fb91817 Mon Sep 17 00:00:00 2001 From: Mike Fiore Date: Thu, 3 Dec 2015 12:15:10 -0600 Subject: turn off acks and receive windows for survey data packets, use mDot handle for data rate, power, etc instead of lora handler --- LoRaHandler/LoRaHandler.cpp | 31 ------------------------------- 1 file changed, 31 deletions(-) (limited to 'LoRaHandler/LoRaHandler.cpp') diff --git a/LoRaHandler/LoRaHandler.cpp b/LoRaHandler/LoRaHandler.cpp index 7ba05f5..47b0e01 100644 --- a/LoRaHandler/LoRaHandler.cpp +++ b/LoRaHandler/LoRaHandler.cpp @@ -87,28 +87,6 @@ LoRaHandler::LoRaHandler(osThreadId main) _ping.status = false; } -bool LoRaHandler::setDataRate(uint8_t rate) { - int32_t res; - _mutex.lock(); - res = _dot->setTxDataRate(rate); - _mutex.unlock(); - if (res == mDot::MDOT_OK) - return true; - - return false; -} - -bool LoRaHandler::setPower(uint32_t power) { - int32_t res; - _mutex.lock(); - res = _dot->setTxPower(power); - _mutex.unlock(); - if (res == mDot::MDOT_OK) - return true; - - return false; -} - bool LoRaHandler::ping() { return action(l_ping); } @@ -151,15 +129,6 @@ LoRaHandler::LoRaPing LoRaHandler::getPingResults() { return ping; } -uint32_t LoRaHandler::getNextTx() { - uint32_t ms; - _mutex.lock(); - ms = _dot->getNextTxMs(); - _mutex.unlock(); - - return ms; -} - uint32_t LoRaHandler::getJoinAttempts() { uint32_t val; -- cgit v1.2.3