diff options
author | QMK Bot <hello@qmk.fm> | 2020-04-29 11:38:51 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2020-04-29 11:38:51 +0000 |
commit | 231464c49c2b429293435570243357dcf7e53ecc (patch) | |
tree | 34cfb9ddd9749e60812cd2ec0a24df9f75ab6ecf /quantum | |
parent | d26a14c1699e72ca3e0ae3d4e9871b620a833080 (diff) |
format code according to conventions [skip ci]
Diffstat (limited to 'quantum')
-rw-r--r-- | quantum/quantum.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/quantum.h b/quantum/quantum.h index 72b0a1021f..17d1d41cc9 100644 --- a/quantum/quantum.h +++ b/quantum/quantum.h @@ -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; |