Browse Source

Add i2c defaults for Convert to Proton C (#14470)

* Add i2c defaults for Convert to Proton C

* Hide default defines behing CTPC check
pull/14474/head
Drashna Jaelre 2 years ago
committed by GitHub
parent
commit
c060ab4e64
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions
  1. +9
    -0
      platforms/chibios/boards/QMK_PROTON_C/configs/config.h

+ 9
- 0
platforms/chibios/boards/QMK_PROTON_C/configs/config.h View File

@ -18,3 +18,12 @@
#ifndef EARLY_INIT_PERFORM_BOOTLOADER_JUMP
# define EARLY_INIT_PERFORM_BOOTLOADER_JUMP TRUE
#endif
#ifdef CONVERT_TO_PROTON_C
# ifndef I2C1_SDA_PIN
# define I2C1_SDA_PIN D1
# endif
# ifndef I2C1_SCL_PIN
# define I2C1_SCL_PIN D0
# endif
#endif

Loading…
Cancel
Save