SX1276 library for modtronix inair9. Edited for use with NRF51DK board.
Fork of SX1276Lib_modtronix by
SX1276LibConfig.h
- Committer:
- modtronix
- Date:
- 2015-05-13
- Revision:
- 22:20db480143c9
- Parent:
- 20:7cf7c08f0088
- Child:
- 24:1346d1c71c40
File content as of revision 22:20db480143c9:
/* Description: - Library Configuration */ #ifndef __SX1276LIBCONFIG_H__ #define __SX1276LIBCONFIG_H__ //Use the SHD3I shield, with the BOARD_INAIR4 module assembled in iMod port 3. The following pins are used: //SCLK=D13, MISO=D12, MOSI=D11 //DIO0=D2, DIO1=D8, DIO2=D4, DIO3=A4, DIO5=D3 DIO4=Not Used //NSS(CS)=D7, Reset=A5 #ifndef SHIELD_SHD3I_INAIR9 #define SHIELD_SHD3I_INAIR9 #endif //This library uses Arduino pins, which are not available on TARGET_NZ32ST1L #if ( defined ( TARGET_NZ32ST1L ) ) #define A0 NC #define A3 NC #define A4 NC #define D0 NC #define D1 NC #define D2 NC #define D3 NC #define D4 NC #define D5 NC #define D6 NC #define D7 NC #define D8 NC #define D9 NC #define D10 NC #define D11 NC #define D12 NC #define D13 NC #endif #endif //__SX1276LIBCONFIG_H__