Cosmetic: Fix some long lines in comment blocks
This commit is contained in:
parent
1b53214a82
commit
088e9920a8
@ -101,14 +101,14 @@
|
|||||||
* Public Functions
|
* Public Functions
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
/************************************************************************************
|
/****************************************************************************
|
||||||
* Name: rcc_resetbkp
|
* Name: rcc_resetbkp
|
||||||
*
|
*
|
||||||
* Description:
|
* Description:
|
||||||
* The RTC needs to reset the Backup Domain to change RTCSEL and resetting the
|
* The RTC needs to reset the Backup Domain to change RTCSEL and resetting
|
||||||
* Backup Domain renders to disabling the LSE as consequence. In order to avoid
|
* the Backup Domain renders to disabling the LSE as consequence. In order
|
||||||
* resetting the Backup Domain when we already configured LSE we will reset the
|
* to avoid resetting the Backup Domain when we already configured LSE we
|
||||||
* Backup Domain early (here).
|
* will reset the Backup Domain early (here).
|
||||||
*
|
*
|
||||||
* Input Parameters:
|
* Input Parameters:
|
||||||
* None
|
* None
|
||||||
@ -116,7 +116,7 @@
|
|||||||
* Returned Value:
|
* Returned Value:
|
||||||
* None
|
* None
|
||||||
*
|
*
|
||||||
************************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
#if defined(CONFIG_RTC) && defined(CONFIG_STM32_PWR) && !defined(CONFIG_STM32_STM32F10XX)
|
#if defined(CONFIG_RTC) && defined(CONFIG_STM32_PWR) && !defined(CONFIG_STM32_STM32F10XX)
|
||||||
static inline rcc_resetbkp(void)
|
static inline rcc_resetbkp(void)
|
||||||
@ -148,17 +148,17 @@ static inline rcc_resetbkp(void)
|
|||||||
* Public Functions
|
* Public Functions
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
/************************************************************************************
|
/****************************************************************************
|
||||||
* Name: stm32_clockconfig
|
* Name: stm32_clockconfig
|
||||||
*
|
*
|
||||||
* Description:
|
* Description:
|
||||||
* Called to establish the clock settings based on the values in board.h. This
|
* Called to establish the clock settings based on the values in board.h.
|
||||||
* function (by default) will reset most everything, enable the PLL, and enable
|
* This function (by default) will reset most everything, enable the PLL,
|
||||||
* peripheral clocking for all periperipherals enabled in the NuttX configuration
|
* and enable peripheral clocking for all peripherals enabled in the NuttX
|
||||||
* file.
|
* configuration file.
|
||||||
*
|
*
|
||||||
* If CONFIG_ARCH_BOARD_STM32_CUSTOM_CLOCKCONFIG is defined, then clocking will
|
* If CONFIG_ARCH_BOARD_STM32_CUSTOM_CLOCKCONFIG is defined, then clocking
|
||||||
* be enabled by an externally provided, board-specific function called
|
* will be enabled by an externally provided, board-specific function called
|
||||||
* stm32_board_clockconfig().
|
* stm32_board_clockconfig().
|
||||||
*
|
*
|
||||||
* Input Parameters:
|
* Input Parameters:
|
||||||
@ -167,7 +167,7 @@ static inline rcc_resetbkp(void)
|
|||||||
* Returned Value:
|
* Returned Value:
|
||||||
* None
|
* None
|
||||||
*
|
*
|
||||||
************************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
void stm32_clockconfig(void)
|
void stm32_clockconfig(void)
|
||||||
{
|
{
|
||||||
@ -241,4 +241,3 @@ void stm32_clockenable(void)
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -88,14 +88,14 @@
|
|||||||
* Public Functions
|
* Public Functions
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
/************************************************************************************
|
/****************************************************************************
|
||||||
* Name: rcc_resetbkp
|
* Name: rcc_resetbkp
|
||||||
*
|
*
|
||||||
* Description:
|
* Description:
|
||||||
* The RTC needs to reset the Backup Domain to change RTCSEL and resetting the
|
* The RTC needs to reset the Backup Domain to change RTCSEL and resetting
|
||||||
* Backup Domain renders to disabling the LSE as consequence. In order to avoid
|
* the Backup Domain renders to disabling the LSE as consequence. In order
|
||||||
* resetting the Backup Domain when we already configured LSE we will reset the
|
* to avoid resetting the Backup Domain when we already configured LSE we
|
||||||
* Backup Domain early (here).
|
* will reset the Backup Domain early (here).
|
||||||
*
|
*
|
||||||
* Input Parameters:
|
* Input Parameters:
|
||||||
* None
|
* None
|
||||||
@ -103,7 +103,7 @@
|
|||||||
* Returned Value:
|
* Returned Value:
|
||||||
* None
|
* None
|
||||||
*
|
*
|
||||||
************************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
#if defined(CONFIG_STM32_PWR) && defined(CONFIG_RTC)
|
#if defined(CONFIG_STM32_PWR) && defined(CONFIG_RTC)
|
||||||
static inline rcc_resetbkp(void)
|
static inline rcc_resetbkp(void)
|
||||||
@ -139,17 +139,17 @@ static inline rcc_resetbkp(void)
|
|||||||
* Public Functions
|
* Public Functions
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
/************************************************************************************
|
/****************************************************************************
|
||||||
* Name: stm32_clockconfig
|
* Name: stm32_clockconfig
|
||||||
*
|
*
|
||||||
* Description:
|
* Description:
|
||||||
* Called to establish the clock settings based on the values in board.h. This
|
* Called to establish the clock settings based on the values in board.h.
|
||||||
* function (by default) will reset most everything, enable the PLL, and enable
|
* This function (by default) will reset most everything, enable the PLL,
|
||||||
* peripheral clocking for all periperipherals enabled in the NuttX configuration
|
* and enable peripheral clocking for all peripherals enabled in the NuttX
|
||||||
* file.
|
* configuration file.
|
||||||
*
|
*
|
||||||
* If CONFIG_ARCH_BOARD_STM32L4_CUSTOM_CLOCKCONFIG is defined, then clocking will
|
* If CONFIG_ARCH_BOARD_STM32L4_CUSTOM_CLOCKCONFIG is defined, then clocking
|
||||||
* be enabled by an externally provided, board-specific function called
|
* will be enabled by an externally provided, board-specific function called
|
||||||
* stm32l4_board_clockconfig().
|
* stm32l4_board_clockconfig().
|
||||||
*
|
*
|
||||||
* Input Parameters:
|
* Input Parameters:
|
||||||
@ -158,7 +158,7 @@ static inline rcc_resetbkp(void)
|
|||||||
* Returned Value:
|
* Returned Value:
|
||||||
* None
|
* None
|
||||||
*
|
*
|
||||||
************************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
void stm32l4_clockconfig(void)
|
void stm32l4_clockconfig(void)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user