Merge commit '6e89573be1c458bf3cfa6f1677a31648b4686284' into nanostack-as_subtree

* commit '6e89573be1c458bf3cfa6f1677a31648b4686284':
  Squashed 'connectivity/drivers/802.15.4_RF/atmel-rf-driver/' changes from 293edc63b8..ae4ef1b197
pull/13473/head
Arto Kinnunen 2020-08-24 15:36:54 +03:00
commit faaab75605
3 changed files with 5 additions and 2 deletions

View File

@ -20,7 +20,7 @@
#include "at24mac.h"
#include "PinNames.h"
#if defined(MBED_CONF_NANOSTACK_CONFIGURATION) && DEVICE_SPI && DEVICE_I2C && defined(MBED_CONF_RTOS_PRESENT)
#if defined(MBED_CONF_NANOSTACK_CONFIGURATION) && DEVICE_SPI && DEVICE_I2C && DEVICE_INTERRUPTIN && defined(MBED_CONF_RTOS_PRESENT)
#include "NanostackRfPhy.h"

View File

@ -16,7 +16,7 @@
#include <string.h>
#if defined(MBED_CONF_NANOSTACK_CONFIGURATION) && DEVICE_SPI && DEVICE_INTERRUPTIN && defined(MBED_CONF_RTOS_PRESENT)
#if defined(MBED_CONF_NANOSTACK_CONFIGURATION) && DEVICE_SPI && DEVICE_I2C && DEVICE_INTERRUPTIN && defined(MBED_CONF_RTOS_PRESENT)
#include "ns_types.h"
#include "platform/arm_hal_interrupt.h"

View File

@ -17,6 +17,8 @@
#ifndef RFBITS_H_
#define RFBITS_H_
#if DEVICE_SPI
#include "DigitalIn.h"
#include "DigitalOut.h"
#include "InterruptIn.h"
@ -78,4 +80,5 @@ public:
DigitalOut ANT_SEL;
};
#endif /* DEVICE_SPI */
#endif /* RFBITS_H_ */