format code according to conventions [skip ci]

This commit is contained in:
QMK Bot 2020-04-29 11:38:51 +00:00
parent d26a14c169
commit 231464c49c
1 changed files with 1 additions and 1 deletions

View File

@ -197,7 +197,7 @@ typedef uint8_t pin_t;
# define readPin(pin) ((bool)(PINx_ADDRESS(pin) & _BV((pin)&0xF)))
# define togglePin(pin) (PORTx_ADDRESS(pin) ^= _BV((pin)&0xF))
# define togglePin(pin) (PORTx_ADDRESS(pin) ^= _BV((pin)&0xF))
#elif defined(PROTOCOL_CHIBIOS)
typedef ioline_t pin_t;