This is an automated email from the ASF dual-hosted git repository.

aguettouche pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git


The following commit(s) were added to refs/heads/master by this push:
     new 75eb3e8  arch/stm32f7: Fix nxstyle errors
75eb3e8 is described below

commit 75eb3e8ec200a78f1e9dbbe4ecd3c5e48c1fa73b
Author: Nathan Hartman <59230071+hartmannat...@users.noreply.github.com>
AuthorDate: Mon Mar 1 09:53:36 2021 -0500

    arch/stm32f7: Fix nxstyle errors
    
    arch/arm/src/stm32f7/stm32_lowputc.c:
    
        * Fix nxstyle errors.
---
 arch/arm/src/stm32f7/stm32_lowputc.c | 24 ++++++++++++++++--------
 1 file changed, 16 insertions(+), 8 deletions(-)

diff --git a/arch/arm/src/stm32f7/stm32_lowputc.c 
b/arch/arm/src/stm32f7/stm32_lowputc.c
index 013169d..2d83cbd 100644
--- a/arch/arm/src/stm32f7/stm32_lowputc.c
+++ b/arch/arm/src/stm32f7/stm32_lowputc.c
@@ -271,8 +271,9 @@
 
 #  undef USE_OVER8
 
-  /* Calculate USART BAUD rate divider */
-  /* Baud rate for standard USART (SPI mode included):
+  /* Calculate USART BAUD rate divider
+   *
+   * Baud rate for standard USART (SPI mode included):
    *
    * In case of oversampling by 16, the equation is:
    *   baud    = fCK / UARTDIV
@@ -289,7 +290,9 @@
 #  define STM32_USARTDIV16 \
     ((STM32_APBCLOCK + (STM32_CONSOLE_BAUD >> 1)) / STM32_CONSOLE_BAUD)
 
-   /* Use oversampling by 8 only if the divisor is small.  But what is small? 
*/
+  /* Use oversampling by 8 only if the divisor is small.  But what is
+   * small?
+   */
 
 #  if STM32_USARTDIV8 > 100
 #    define STM32_BRR_VALUE STM32_USARTDIV16
@@ -337,9 +340,11 @@ void arm_lowputc(char ch)
 #ifdef HAVE_CONSOLE
   /* Wait until the TX data register is empty */
 
-  while ((getreg32(STM32_CONSOLE_BASE + STM32_USART_ISR_OFFSET) & 
USART_ISR_TXE) == 0);
+  while ((getreg32(STM32_CONSOLE_BASE +
+                   STM32_USART_ISR_OFFSET) & USART_ISR_TXE) == 0);
 #ifdef STM32_CONSOLE_RS485_DIR
-  stm32_gpiowrite(STM32_CONSOLE_RS485_DIR, STM32_CONSOLE_RS485_DIR_POLARITY);
+  stm32_gpiowrite(STM32_CONSOLE_RS485_DIR,
+                  STM32_CONSOLE_RS485_DIR_POLARITY);
 #endif
 
   /* Then send the character */
@@ -347,8 +352,10 @@ void arm_lowputc(char ch)
   putreg32((uint32_t)ch, STM32_CONSOLE_BASE + STM32_USART_TDR_OFFSET);
 
 #ifdef STM32_CONSOLE_RS485_DIR
-  while ((getreg32(STM32_CONSOLE_BASE + STM32_USART_ISR_OFFSET) & 
USART_ISR_TC) == 0);
-  stm32_gpiowrite(STM32_CONSOLE_RS485_DIR, !STM32_CONSOLE_RS485_DIR_POLARITY);
+  while ((getreg32(STM32_CONSOLE_BASE +
+                   STM32_USART_ISR_OFFSET) & USART_ISR_TC) == 0);
+  stm32_gpiowrite(STM32_CONSOLE_RS485_DIR,
+                  !STM32_CONSOLE_RS485_DIR_POLARITY);
 #endif
 
 #endif /* HAVE_CONSOLE */
@@ -391,7 +398,8 @@ void stm32_lowsetup(void)
 
 #ifdef STM32_CONSOLE_RS485_DIR
   stm32_configgpio(STM32_CONSOLE_RS485_DIR);
-  stm32_gpiowrite(STM32_CONSOLE_RS485_DIR, !STM32_CONSOLE_RS485_DIR_POLARITY);
+  stm32_gpiowrite(STM32_CONSOLE_RS485_DIR,
+                  !STM32_CONSOLE_RS485_DIR_POLARITY);
 #endif
 
   /* Enable and configure the selected console device */

Reply via email to