1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-01-19 08:52:15 +01:00

Port SDA and SCL symbols to SAM

This commit is contained in:
Sandeep Mistry 2016-04-04 15:03:14 -04:00
parent 509721213b
commit ea7fbdec6b

View File

@ -153,6 +153,11 @@ static const uint8_t SCK = PIN_SPI_SCK;
#define WIRE1_ISR_HANDLER TWI0_Handler
#define WIRE1_ISR_ID TWI0_IRQn
static const uint8_t SDA = PIN_WIRE_SDA;
static const uint8_t SCL = PIN_WIRE_SCL;
static const uint8_t SDA1 = PIN_WIRE1_SDA;
static const uint8_t SCL1 = PIN_WIRE1_SCL;
/*
* UART/USART Interfaces
*/