You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
3.0 KiB

  1. # GPIO Control :id=gpio-control
  2. QMK has a GPIO control abstraction layer which is microcontroller agnostic. This is done to allow easy access to pin control across different platforms.
  3. ## Macros :id=macros
  4. The following macros provide basic control of GPIOs and are found in `platforms/<platform>/gpio.h`.
  5. |Macro |Description |
  6. |-------------------------------------|---------------------------------------------------------------------|
  7. |`gpio_set_pin_input(pin)` |Set pin as input with high impedance (High-Z) |
  8. |`gpio_set_pin_input_high(pin)` |Set pin as input with builtin pull-up resistor |
  9. |`gpio_set_pin_input_low(pin)` |Set pin as input with builtin pull-down resistor (unavailable on AVR)|
  10. |`gpio_set_pin_output(pin)` |Set pin as output (alias of `gpio_set_pin_output_push_pull`) |
  11. |`gpio_set_pin_output_push_pull(pin)` |Set pin as output, push/pull mode |
  12. |`gpio_set_pin_output_open_drain(pin)`|Set pin as output, open-drain mode (unavailable on AVR and ATSAM) |
  13. |`gpio_write_pin_high(pin)` |Set pin level as high, assuming it is an output |
  14. |`gpio_write_pin_low(pin)` |Set pin level as low, assuming it is an output |
  15. |`gpio_write_pin(pin, level)` |Set pin level, assuming it is an output |
  16. |`gpio_read_pin(pin)` |Returns the level of the pin |
  17. |`gpio_toggle_pin(pin)` |Invert pin level, assuming it is an output |
  18. ## Advanced Settings :id=advanced-settings
  19. 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. 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.
  20. ## Atomic Operation :id=atomic-operation
  21. The above functions are not always guaranteed to work atomically. Therefore, if you want to prevent interruptions in the middle of operations when using multiple combinations of the above functions, use the following `ATOMIC_BLOCK_FORCEON` macro.
  22. eg.
  23. ```c
  24. void some_function(void) {
  25. // some process
  26. ATOMIC_BLOCK_FORCEON {
  27. // Atomic Processing
  28. }
  29. // some process
  30. }
  31. ```
  32. `ATOMIC_BLOCK_FORCEON` forces interrupts to be disabled before the block is executed, without regard to whether they are enabled or disabled. Then, after the block is executed, the interrupt is enabled.
  33. Note that `ATOMIC_BLOCK_FORCEON` can therefore be used if you know that interrupts are enabled before the execution of the block, or if you know that it is OK to enable interrupts at the completion of the block.