Definitions for Sanguino SPI

This commit is contained in:
Yuri Valentini 2013-01-04 18:32:08 +01:00
parent 5e3873c8db
commit 69582042d7

View file

@ -39,6 +39,11 @@
#define TIMER2A 6
#define TIMER2B 7
const static uint8_t SS = 4;
const static uint8_t MOSI = 5;
const static uint8_t MISO = 6;
const static uint8_t SCK = 7;
extern const uint8_t PROGMEM port_to_mode_PGM[];
extern const uint8_t PROGMEM port_to_input_PGM[];
extern const uint8_t PROGMEM port_to_output_PGM[];