//RJA keeping board settings here
#include "propeller.h"

//SD Card Pins
/* P2 Eval
#define PIN_SS   60
#define PIN_MOSI 59
#define PIN_MISO 58
#define PIN_CLK  61
#define PIN_SD_TEST1 (58) //if high, assume card present 
#define PIN_SD_TEST2 (60) // if pullup on this pin, assume card present 
*/

#define PIN_SS   57
#define PIN_MOSI 56
#define PIN_MISO 54
#define PIN_CLK  55
#define PIN_SD_TEST1 (PIN_MISO) //if high, assume card present 
#define PIN_SD_TEST2 (PIN_SS) // if pullup on this pin, assume card present 

//Use VGA?
#define MICROPY_USE_VGA (1) //RJA
#define MICROPY_P2_USE_VGA (1) //RJA

#define VGA_BASEPIN 8 //RJA 48

//Use USB?
#define MICROPY_USE_USB (1) //RJA
#define MICROPY_P2_USE_USB (1) //RJA


