diff options
| author | iabdalkader <i.abdalkader@gmail.com> | 2023-05-11 19:11:03 +0200 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2023-05-19 22:23:10 +1000 |
| commit | 70b60fe24edce3ea4ef57ebd294ca4323c10c041 (patch) | |
| tree | fac3f6b0c18cde95f71a2b3d39e1d6cbfa84cd10 | |
| parent | f03ac04321cbba4bd65b1790eddd4d121f649ce0 (diff) | |
renesas-ra/irq: Fix typo in comment about IRQ priorities.
Signed-off-by: iabdalkader <i.abdalkader@gmail.com>
| -rw-r--r-- | ports/renesas-ra/irq.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ports/renesas-ra/irq.h b/ports/renesas-ra/irq.h index f2d047822..076247953 100644 --- a/ports/renesas-ra/irq.h +++ b/ports/renesas-ra/irq.h @@ -100,8 +100,8 @@ static inline void restore_irq_pri(uint32_t state) { // // The default priority grouping is set to NVIC_PRIORITYGROUP_4 in the // HAL_Init function. This corresponds to 4 bits for the priority field -// and 0 bits for the sub-priority field (which means that for all intensive -// purposes that the sub-priorities below are ignored). +// and 0 bits for the sub-priority field (which means that for all intents +// and purposes, the sub-priorities below are ignored). // // While a given interrupt is being processed, only higher priority (lower number) // interrupts will preempt a given interrupt. If sub-priorities are active |
