mirror of https://github.com/ARMmbed/mbed-os.git
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
parent
4432ad9ae7
commit
f0fe1229cf
|
|
@ -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.
|
||||
|
|
@ -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 {
|
||||
|
||||
|
|
|
|||
|
|
@ -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> {
|
||||
|
|
|
|||
Loading…
Reference in New Issue