Enabled all bandwidths, added Modtronix inAir9 module

Dependents:   SX1276PingPong_modtronix

Fork of SX1276Lib by Gregory Cristian

SX1276LibConfig.h

Committer:
modtronix
Date:
2015-07-29
Revision:
25:72381be1b0ce
Parent:
24:1346d1c71c40

File content as of revision 25:72381be1b0ce:

/*
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=Not Used  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 and TARGET_NZ32SC151
#if ( defined ( TARGET_NZ32ST1L ) || defined(TARGET_NZ32SC151) )
#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__