Skip to content

Commit

Permalink
add 'togglePin' convenience function (qmk#8734)
Browse files Browse the repository at this point in the history
* add 'togglePin' conveniance function

for AVR and chibios

* drop outmost parantheses

Co-Authored-By: Konstantin Đorđević <[email protected]>

* toggle pin on avrs

toggle a pin configured as output by writing the corresponding bit to the PIN register

Co-Authored-By: Takeshi ISHII <[email protected]>

* togglepin: add documentation for newly added function

* Update docs/internals_gpio_control.md

Co-Authored-By: Konstantin Đorđević <[email protected]>

* on AVR: use PORTD to toggle the output

... since not all MCUs support toggling through writing to PIN

Co-Authored-By: Ryan <[email protected]>

Co-authored-by: Johannes <[email protected]>
Co-authored-by: Konstantin Đorđević <[email protected]>
Co-authored-by: Takeshi ISHII <[email protected]>
Co-authored-by: Ryan <[email protected]>
  • Loading branch information
5 people authored and turky committed Jun 13, 2020
1 parent 11a15f9 commit 0e97ede
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/internals_gpio_control.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ The following functions can provide basic control of GPIOs and are found in `qua
| `writePinLow(pin)` | Set pin level as low, assuming it is an output | `PORTB &= ~(1<<2)` | `palClearLine(pin)` |
| `writePin(pin, level)` | Set pin level, assuming it is an output | `(level) ? PORTB \|= (1<<2) : PORTB &= ~(1<<2)` | `(level) ? palSetLine(pin) : palClearLine(pin)` |
| `readPin(pin)` | Returns the level of the pin | `_SFR_IO8(pin >> 4) & _BV(pin & 0xF)` | `palReadLine(pin)` |
| `togglePin(pin)` | Invert pin level, assuming it is an output | `PORTB ^= (1<<2)` | `palToggleLine(pin)` |

## Advanced Settings :id=advanced-settings

Expand Down
4 changes: 4 additions & 0 deletions quantum/quantum.h
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,8 @@ typedef uint8_t pin_t;

# define readPin(pin) ((bool)(PINx_ADDRESS(pin) & _BV((pin)&0xF)))

# define togglePin(pin) (PORTx_ADDRESS(pin) ^= _BV((pin)&0xF))

#elif defined(PROTOCOL_CHIBIOS)
typedef ioline_t pin_t;

Expand All @@ -210,6 +212,8 @@ typedef ioline_t pin_t;
# define writePin(pin, level) ((level) ? writePinHigh(pin) : writePinLow(pin))

# define readPin(pin) palReadLine(pin)

# define togglePin(pin) palToggleLine(pin)
#endif

#define SEND_STRING(string) send_string_P(PSTR(string))
Expand Down

0 comments on commit 0e97ede

Please sign in to comment.