Commit bdc74464 authored by akatran's avatar akatran

Changes to include XMEGA D3 family.

parent d5d28965
...@@ -1847,7 +1847,7 @@ private: ...@@ -1847,7 +1847,7 @@ private:
* *
* The RF24 driver can be build as a static library with Atmel Studio 7 in order to be included as any other library in another program for the XMEGA family. * The RF24 driver can be build as a static library with Atmel Studio 7 in order to be included as any other library in another program for the XMEGA family.
* *
* Currently only the </b>ATXMEGA256D3</b> is implemented. * Currently only the </b>ATXMEGA D3</b> family is implemented.
* *
* @section Preparation * @section Preparation
* *
...@@ -1856,7 +1856,7 @@ private: ...@@ -1856,7 +1856,7 @@ private:
* *
* @code * @code
* utility\ * utility\
* ATXMega256D3\ * ATXMegaD3\
* compatibility.c * compatibility.c
* compatibility.h * compatibility.h
* gpio.cpp * gpio.cpp
......
...@@ -29,8 +29,9 @@ ...@@ -29,8 +29,9 @@
#define RF24_SPI_TRANSACTIONS #define RF24_SPI_TRANSACTIONS
#endif #endif
//ATXMega //ATXMega
#if defined(__AVR_ATxmega256D3__) // In order to be available both in windows and linux this should take presence here. #if defined(__AVR_ATxmega64D3__) || defined(__AVR_ATxmega128D3__) || defined(__AVR_ATxmega192D3__) || defined(__AVR_ATxmega256D3__) || defined(__AVR_ATxmega384D3__) // In order to be available both in windows and linux this should take presence here.
#define XMEGA #define XMEGA
#define XMEGA_D3 #define XMEGA_D3
#include "utility/ATXMegaD3/RF24_arch_config.h" #include "utility/ATXMegaD3/RF24_arch_config.h"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment