summaryrefslogtreecommitdiff
path: root/docs/internals_gpio_control.md
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-01-30 11:01:46 +0000
committerQMK Bot <hello@qmk.fm>2021-01-30 11:01:46 +0000
commita0e733391532490a216da044efb40451f67774f2 (patch)
tree8cc6bd43d0b70283b90cfadee1f512ef1161ff4c /docs/internals_gpio_control.md
parent6b9a7e21e953d68d6ae093c2d727f1f3ac2798c0 (diff)
parent92a787ca4cdecbbb7e2c1394d5192d5fa3dabf6d (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'docs/internals_gpio_control.md')
-rw-r--r--docs/internals_gpio_control.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/internals_gpio_control.md b/docs/internals_gpio_control.md
index 7c2228949b..dcff928c70 100644
--- a/docs/internals_gpio_control.md
+++ b/docs/internals_gpio_control.md
@@ -20,7 +20,7 @@ The following functions can provide basic control of GPIOs and are found in `qua
## Advanced Settings :id=advanced-settings
-Each microcontroller can have multiple advanced settings regarding its GPIO. This abstraction layer does not limit the use of architecture-specific functions. Advanced users should consult the datasheet of their desired device and include any needed libraries. For AVR, the standard avr/io.h library is used; for STM32, the ChibiOS [PAL library](http://chibios.sourceforge.net/docs3/hal/group___p_a_l.html) is used.
+Each microcontroller can have multiple advanced settings regarding its GPIO. This abstraction layer does not limit the use of architecture-specific functions. Advanced users should consult the datasheet of their desired device and include any needed libraries. For AVR, the standard avr/io.h library is used; for STM32, the ChibiOS [PAL library](https://chibios.sourceforge.net/docs3/hal/group___p_a_l.html) is used.
## Atomic Operation