1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-16 11:21:18 +03:00

SPI lib (WIP)

This commit is contained in:
Cristian Maglie
2011-12-02 16:29:50 +01:00
parent 906bb28f9e
commit 5a238022a3
3 changed files with 58 additions and 68 deletions

View File

@ -71,6 +71,15 @@
#define PIN_LED2 PIN_LED_RXL
#define PIN_LED3 PIN_LED_TXL
#define SPI_INTERFACES_COUNT 1
#define SPI_INTERFACE SPI
#define SPI_INTERFACE_ID ID_SPI
#define PIN_SPI_SS (4u)
#define PIN_SPI_MOSI (76u)
#define PIN_SPI_MISO (75u)
#define PIN_SPI_SCK (77u)
#define WIRE_INTERFACES_COUNT 2
#define PIN_WIRE_SDA (20u)