From 9f827feeaa62f0f4c10613c7d1a57c537e670036 Mon Sep 17 00:00:00 2001 From: Tim Gates <tim.gates@iress.com> Date: Sat, 28 Aug 2021 07:46:08 +1000 Subject: [PATCH] docs: fix simple typo, priorty -> priority There is a small typo in examples/stm32-freertos-tcp/stm32f7/core_cm7.h. Should read `priority` rather than `priorty`. --- examples/stm32-freertos-tcp/stm32f7/core_cm7.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/stm32-freertos-tcp/stm32f7/core_cm7.h b/examples/stm32-freertos-tcp/stm32f7/core_cm7.h index 20963c148..37c4b7de6 100644 --- a/examples/stm32-freertos-tcp/stm32f7/core_cm7.h +++ b/examples/stm32-freertos-tcp/stm32f7/core_cm7.h @@ -1810,7 +1810,7 @@ __STATIC_INLINE void NVIC_SetPriorityGrouping(uint32_t PriorityGroup) reg_value &= ~((uint32_t)(SCB_AIRCR_VECTKEY_Msk | SCB_AIRCR_PRIGROUP_Msk)); /* clear bits to change */ reg_value = (reg_value | ((uint32_t)0x5FAUL << SCB_AIRCR_VECTKEY_Pos) | - (PriorityGroupTmp << 8U) ); /* Insert write key and priorty group */ + (PriorityGroupTmp << 8U) ); /* Insert write key and priority group */ SCB->AIRCR = reg_value; } -- GitLab