diff options
author | Jack Humbert <jack.humb@gmail.com> | 2018-11-02 12:31:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-02 12:31:40 -0400 |
commit | 15f6278aa623ceda4c220daee1cbedb9e38e6a97 (patch) | |
tree | be1f80786f810c75d0f914899d299c530664d324 /docs | |
parent | 5909d8aef1126357899b687155bfe377914891df (diff) |
Add support for Atmega32A to pin declarations and universal matrix (#4015)
* add computed pins from mcu type
* update for atmega32a
* doc typo
* add atmega16 chips, link to references
* remove avr include from config
* exclude assembler in config.h includes
* consolodate options, add 646
* fix typo in pindef
Diffstat (limited to 'docs')
-rw-r--r-- | docs/internals_gpio_control.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/internals_gpio_control.md b/docs/internals_gpio_control.md index 21643d30c9..083e696648 100644 --- a/docs/internals_gpio_control.md +++ b/docs/internals_gpio_control.md @@ -12,7 +12,7 @@ The following functions can provide basic control of GPIOs and are found in `qua |`setPinInputHigh(pin)`|Set pin as input with build in pull-up | |`setPinInputLow(pin)` |Set pin as input with build in pull-down (Supported only on STM32)| |`setPinOutput(pin)` |Set pin as output | -|`writePinHige(pin)` |Set pin level as high, assuming it is an output | +|`writePinHigh(pin)` |Set pin level as high, assuming it is an output | |`writePinLow(pin)` |Set pin level as low, assuming it is an output | |`writePin(pin, level)`|Set pin level, assuming it is an output | |`readPin(pin)` |Returns the level of the pin | |