Moving LoRaRadio and LoRaWANBAse to lorawan

LoRaRadio and LoRaWANBase use to exist under netsocket/.
However, their logical location should be where the actual stack exists.
pull/6059/head
Hasnain Virk 2018-02-09 12:17:33 +02:00
parent 4432ad9ae7
commit f0fe1229cf
4 changed files with 4 additions and 5 deletions

View File

@ -18,9 +18,8 @@
#ifndef LORARADIO_H_
#define LORARADIO_H_
#include <stdint.h>
#include "platform/Callback.h"
#include "PinNames.h"
#include "Callback.h"
/**
* Structure to hold RF controls for LoRa Radio.

View File

@ -19,9 +19,9 @@
#define LORAWANINTERFACE_H_
#include "platform/Callback.h"
#include "netsocket/LoRaWANBase.h"
#include "lorawan/LoRaWANStack.h"
#include "netsocket/LoRaRadio.h"
#include "lorawan/LoRaRadio.h"
#include "lorawan/LoRaWANBase.h"
class LoRaWANInterface: public LoRaWANBase {

View File

@ -34,9 +34,9 @@
#ifndef MBED_OS_LORAPHY_BASE_
#define MBED_OS_LORAPHY_BASE_
#include "lorawan/LoRaRadio.h"
#include "lorawan/system/LoRaWANTimer.h"
#include "lorawan/lorastack/phy/lora_phy_ds.h"
#include "netsocket/LoRaRadio.h"
#include "platform/NonCopyable.h"
class LoRaPHY : private mbed::NonCopyable<LoRaPHY> {