Skip to content
Snippets Groups Projects
Commit 0b421e97 authored by Scott Lahteine's avatar Scott Lahteine
Browse files

Rename some (unused) OMCA pins

parent c2c9f01c
Branches
Tags
No related merge requests found
...@@ -350,11 +350,11 @@ ...@@ -350,11 +350,11 @@
#if PIN_EXISTS(HOME) #if PIN_EXISTS(HOME)
REPORT_NAME_DIGITAL(HOME_PIN, __LINE__ ) REPORT_NAME_DIGITAL(HOME_PIN, __LINE__ )
#endif #endif
#if defined(I2C_SCL) && I2C_SCL >= 0 #if PIN_EXISTS(I2C_SCL)
REPORT_NAME_DIGITAL(I2C_SCL, __LINE__ ) REPORT_NAME_DIGITAL(I2C_SCL_PIN, __LINE__ )
#endif #endif
#if defined(I2C_SDA) && I2C_SDA >= 0 #if PIN_EXISTS(I2C_SDA)
REPORT_NAME_DIGITAL(I2C_SDA, __LINE__ ) REPORT_NAME_DIGITAL(I2C_SDA_PIN, __LINE__ )
#endif #endif
#if PIN_EXISTS(KILL) #if PIN_EXISTS(KILL)
REPORT_NAME_DIGITAL(KILL_PIN, __LINE__ ) REPORT_NAME_DIGITAL(KILL_PIN, __LINE__ )
......
...@@ -111,8 +111,8 @@ ...@@ -111,8 +111,8 @@
// //
#define SDSS 11 #define SDSS 11
#define I2C_SCL 16 #define I2C_SCL_PIN 16
#define I2C_SDA 17 #define I2C_SDA_PIN 17
// future proofing // future proofing
#define __FS 20 #define __FS 20
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment