From 55a7458b1697094350b021b119988b1364f149cb Mon Sep 17 00:00:00 2001 From: vrepetenko Date: Sun, 5 Sep 2021 16:48:07 +0000 Subject: [PATCH] Fixed Radio SPI name typo. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@14737 27425a3e-05d8-49a3-a47f-9c15f0e5edd8 --- os/hal/ports/STM32/STM32WLxx/stm32_rcc.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/os/hal/ports/STM32/STM32WLxx/stm32_rcc.h b/os/hal/ports/STM32/STM32WLxx/stm32_rcc.h index d82bef9b1..243928f30 100644 --- a/os/hal/ports/STM32/STM32WLxx/stm32_rcc.h +++ b/os/hal/ports/STM32/STM32WLxx/stm32_rcc.h @@ -673,7 +673,7 @@ #define rccResetSPI2() rccResetAPB1R1(RCC_APB1RSTR1_SPI2RST) /** - * @brief Enables the SPIR peripheral clock. + * @brief Enables the SPI3 peripheral clock. * * @param[in] lp low power enable flag * @@ -682,14 +682,14 @@ #define rccEnableSPI3(lp) rccEnableAPB3(RCC_APB3ENR_SUBGHZSPIEN, lp) /** - * @brief Disables the SPIR peripheral clock. + * @brief Disables the SPI3 peripheral clock. * * @api */ #define rccDisableSPI3() rccDisableAPB3(RCC_APB3ENR_SUBGHZSPIEN) /** - * @brief Resets the SPIR peripheral. + * @brief Resets the SPI3 peripheral. * * @api */