Remove UNUSED_PINS
(#17931)
This commit is contained in:
@@ -35,7 +35,7 @@
|
||||
|
||||
// These pins are not broken out, and cannot be used normally.
|
||||
// They are set as output and pulled high, by default
|
||||
#define UNUSED_PINS \
|
||||
#define UNUSABLE_PINS \
|
||||
{ D1, D3, B4, B6, B7, D6, C7, F6, F5, F3, F7 }
|
||||
|
||||
// If board has a debug LED, you can enable it by defining this
|
||||
|
@@ -35,7 +35,7 @@
|
||||
|
||||
// These pins are not broken out, and cannot be used normally.
|
||||
// They are set as output and pulled high, by default
|
||||
#define UNUSED_PINS \
|
||||
#define UNUSABLE_PINS \
|
||||
{ D1, D3, B4, B7, D6, C7, F6, F5, F3, F7 }
|
||||
|
||||
// If board has a debug LED, you can enable it by defining this
|
||||
|
@@ -204,8 +204,8 @@ void keyboard_pre_init_kb(void) {
|
||||
* pathways to ground. If you're messing with this, know this: driving ANY
|
||||
* of these pins high will cause a short. On the MCU. Ka-blooey.
|
||||
*/
|
||||
#ifdef UNUSED_PINS
|
||||
const pin_t unused_pins[] = UNUSED_PINS;
|
||||
#ifdef UNUSABLE_PINS
|
||||
const pin_t unused_pins[] = UNUSABLE_PINS;
|
||||
|
||||
for (uint8_t i = 0; i < (sizeof(unused_pins) / sizeof(pin_t)); i++) {
|
||||
setPinOutput(unused_pins[i]);
|
||||
|
Reference in New Issue
Block a user