Fix back-to-front description of IRQ priority in doxygen (#245)

This commit is contained in:
Luke Wren 2021-03-14 00:08:04 +00:00 committed by GitHub
parent a2576202ff
commit 6c1150f3f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -123,9 +123,12 @@ typedef void (*irq_handler_t)(void);
* \ingroup hardware_irq * \ingroup hardware_irq
* *
* \param num Interrupt number * \param num Interrupt number
* \param hardware_priority Priority to set. Hardware priorities range from 0 (lowest) to 255 (highest) though only * \param hardware_priority Priority to set.
* the top 2 bits are significant on ARM Cortex M0+. To make it easier to specify higher or lower priorities * Numerically-lower values indicate a higher priority. Hardware priorities
* than the default, all IRQ priorities are initialized to PICO_DEFAULT_IRQ_PRIORITY by the SDK runtime at startup. * range from 0 (highest priority) to 255 (lowest priority) though only the
* top 2 bits are significant on ARM Cortex-M0+. To make it easier to specify
* higher or lower priorities than the default, all IRQ priorities are
* initialized to PICO_DEFAULT_IRQ_PRIORITY by the SDK runtime at startup.
* PICO_DEFAULT_IRQ_PRIORITY defaults to 0x80 * PICO_DEFAULT_IRQ_PRIORITY defaults to 0x80
*/ */
void irq_set_priority(uint num, uint8_t hardware_priority); void irq_set_priority(uint num, uint8_t hardware_priority);