From 5a13c29397c388a9c1a8f067f2f671cb8655ac9f Mon Sep 17 00:00:00 2001 From: Nils Hasenbanck Date: Fri, 25 Jan 2019 14:12:00 +0100 Subject: [PATCH] Add I2C definition for RemRam V1 I thought I had set the I2C pins to the arduino compatible values, but it seems I messed that up. This change will set the defaults for the board variant RemRam V1. --- variants/REMRAM_V1/variant.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/variants/REMRAM_V1/variant.h b/variants/REMRAM_V1/variant.h index 018ed996fc..2fa729cbdb 100644 --- a/variants/REMRAM_V1/variant.h +++ b/variants/REMRAM_V1/variant.h @@ -171,6 +171,10 @@ extern "C" // UART Definitions #define SERIAL_UART_INSTANCE 1 +// I2C Definitions +#define PIN_WIRE_SDA PB7 +#define PIN_WIRE_SCL PB6 + // Default pin used for 'Serial' instance #define PIN_SERIAL_RX 0 #define PIN_SERIAL_TX 1