aboutsummaryrefslogtreecommitdiff
path: root/quantum/quantum.h
diff options
context:
space:
mode:
authorJohSchneider <JohSchneider@googlemail.com>2020-04-29 11:04:29 +0000
committerGitHub <noreply@github.com>2020-04-29 04:04:29 -0700
commitd26a14c1699e72ca3e0ae3d4e9871b620a833080 (patch)
tree9731a3b6fc0e9de396cc99c00fde6a2b21e2dce9 /quantum/quantum.h
parent195be50745e6f476bcef17085fde0cd32760a46b (diff)
downloadqmk_firmware-d26a14c1699e72ca3e0ae3d4e9871b620a833080.tar.gz
qmk_firmware-d26a14c1699e72ca3e0ae3d4e9871b620a833080.zip
add 'togglePin' convenience function (#8734)
* add 'togglePin' conveniance function for AVR and chibios * drop outmost parantheses Co-Authored-By: Konstantin Đorđević <vomindoraan@gmail.com> * toggle pin on avrs toggle a pin configured as output by writing the corresponding bit to the PIN register Co-Authored-By: Takeshi ISHII <2170248+mtei@users.noreply.github.com> * togglepin: add documentation for newly added function * Update docs/internals_gpio_control.md Co-Authored-By: Konstantin Đorđević <vomindoraan@gmail.com> * on AVR: use PORTD to toggle the output ... since not all MCUs support toggling through writing to PIN Co-Authored-By: Ryan <fauxpark@gmail.com> Co-authored-by: Johannes <you@example.com> Co-authored-by: Konstantin Đorđević <vomindoraan@gmail.com> Co-authored-by: Takeshi ISHII <2170248+mtei@users.noreply.github.com> Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'quantum/quantum.h')
-rw-r--r--quantum/quantum.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/quantum/quantum.h b/quantum/quantum.h
index 45f44f49a..72b0a1021 100644
--- a/quantum/quantum.h
+++ b/quantum/quantum.h
@@ -197,6 +197,8 @@ typedef uint8_t pin_t;
197 197
198# define readPin(pin) ((bool)(PINx_ADDRESS(pin) & _BV((pin)&0xF))) 198# define readPin(pin) ((bool)(PINx_ADDRESS(pin) & _BV((pin)&0xF)))
199 199
200# define togglePin(pin) (PORTx_ADDRESS(pin) ^= _BV((pin)&0xF))
201
200#elif defined(PROTOCOL_CHIBIOS) 202#elif defined(PROTOCOL_CHIBIOS)
201typedef ioline_t pin_t; 203typedef ioline_t pin_t;
202 204
@@ -210,6 +212,8 @@ typedef ioline_t pin_t;
210# define writePin(pin, level) ((level) ? writePinHigh(pin) : writePinLow(pin)) 212# define writePin(pin, level) ((level) ? writePinHigh(pin) : writePinLow(pin))
211 213
212# define readPin(pin) palReadLine(pin) 214# define readPin(pin) palReadLine(pin)
215
216# define togglePin(pin) palToggleLine(pin)
213#endif 217#endif
214 218
215#define SEND_STRING(string) send_string_P(PSTR(string)) 219#define SEND_STRING(string) send_string_P(PSTR(string))