Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/rp2_common/hardware_gpio/include/hardware/gpio.h
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ static inline void gpio_acknowledge_irq(uint gpio, uint32_t event_mask) {
*
* \note Multiple raw handlers should not be added for the same GPIOs, and this method will assert if you attempt to.
* Internally, this function calls \ref irq_add_shared_handler, which will assert if the maximum number of shared handlers
* (configurable via PICO_MAX_IRQ_SHARED_HANDLERS) would be exceeded.
* (configurable via PICO_MAX_SHARED_IRQ_HANDLERS) would be exceeded.
*
* A raw handler should check for whichever GPIOs and events it handles, and acknowledge them itself; it might look something like:
*
Expand Down Expand Up @@ -622,7 +622,7 @@ void gpio_add_raw_irq_handler_with_order_priority_masked(uint32_t gpio_mask, irq
*
* \note Multiple raw handlers should not be added for the same GPIOs, and this method will assert if you attempt to.
* Internally, this function calls \ref irq_add_shared_handler, which will assert if the maximum number of shared handlers
* (configurable via PICO_MAX_IRQ_SHARED_HANDLERS) would be exceeded.
* (configurable via PICO_MAX_SHARED_IRQ_HANDLERS) would be exceeded.
*
* A raw handler should check for whichever GPIOs and events it handles, and acknowledge them itself; it might look something like:
*
Expand Down Expand Up @@ -657,7 +657,7 @@ void gpio_add_raw_irq_handler_with_order_priority_masked64(uint64_t gpio_mask, i
*
* \note Multiple raw handlers should not be added for the same GPIO, and this method will assert if you attempt to.
* Internally, this function calls \ref irq_add_shared_handler, which will assert if the maximum number of shared handlers
* (configurable via PICO_MAX_IRQ_SHARED_HANDLERS) would be exceeded.
* (configurable via PICO_MAX_SHARED_IRQ_HANDLERS) would be exceeded.
*
* A raw handler should check for whichever GPIOs and events it handles, and acknowledge them itself; it might look something like:
*
Expand Down Expand Up @@ -693,7 +693,7 @@ static inline void gpio_add_raw_irq_handler_with_order_priority(uint gpio, irq_h
*
* \note Multiple raw handlers should not be added for the same GPIOs, and this method will assert if you attempt to.
* Internally, this function calls \ref irq_add_shared_handler, which will assert if the maximum number of shared handlers
* (configurable via PICO_MAX_IRQ_SHARED_HANDLERS) would be exceeded.
* (configurable via PICO_MAX_SHARED_IRQ_HANDLERS) would be exceeded.
*
* A raw handler should check for whichever GPIOs and events it handles, and acknowledge them itself; it might look something like:
*
Expand Down Expand Up @@ -725,7 +725,7 @@ void gpio_add_raw_irq_handler_masked(uint32_t gpio_mask, irq_handler_t handler);
*
* \note Multiple raw handlers should not be added for the same GPIOs, and this method will assert if you attempt to.
* Internally, this function calls \ref irq_add_shared_handler, which will assert if the maximum number of shared handlers
* (configurable via PICO_MAX_IRQ_SHARED_HANDLERS) would be exceeded.
* (configurable via PICO_MAX_SHARED_IRQ_HANDLERS) would be exceeded.
*
* A raw handler should check for whichever GPIOs and events it handles, and acknowledge them itself; it might look something like:
*
Expand Down Expand Up @@ -757,7 +757,7 @@ void gpio_add_raw_irq_handler_masked64(uint64_t gpio_mask, irq_handler_t handler
*
* \note Multiple raw handlers should not be added for the same GPIO, and this method will assert if you attempt to.
* Internally, this function calls \ref irq_add_shared_handler, which will assert if the maximum number of shared handlers
* (configurable via PICO_MAX_IRQ_SHARED_HANDLERS) would be exceeded.
* (configurable via PICO_MAX_SHARED_IRQ_HANDLERS) would be exceeded.
*
* A raw handler should check for whichever GPIOs and events it handles, and acknowledge them itself; it might look something like:
*
Expand Down