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 78f308f arch/stm32: Fix nxstyle errors 78f308f is described below commit 78f308ff2cf2828425e67370d4a55196ae5e28f8 Author: Nathan Hartman <59230071+hartmannat...@users.noreply.github.com> AuthorDate: Mon Dec 21 11:05:51 2020 -0500 arch/stm32: Fix nxstyle errors arch/arm/src/stm32/stm32_dac.h: * Fix nxstyle issues. --- arch/arm/src/stm32/stm32_dac.h | 32 +++++++++++++++++--------------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/arch/arm/src/stm32/stm32_dac.h b/arch/arm/src/stm32/stm32_dac.h index e77ae3a..c8e3f17 100644 --- a/arch/arm/src/stm32/stm32_dac.h +++ b/arch/arm/src/stm32/stm32_dac.h @@ -1,4 +1,4 @@ -/************************************************************************************ +/**************************************************************************** * arch/arm/src/stm32/stm32_dac.h * * Copyright (C) 2011, 2015 Gregory Nutt. All rights reserved. @@ -31,14 +31,14 @@ * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - ************************************************************************************/ + ****************************************************************************/ #ifndef __ARCH_ARM_SRC_STM32_STM32_DAC_H #define __ARCH_ARM_SRC_STM32_STM32_DAC_H -/************************************************************************************ +/**************************************************************************** * Included Files - ************************************************************************************/ + ****************************************************************************/ #include <nuttx/config.h> @@ -47,14 +47,16 @@ #include <nuttx/analog/dac.h> -/************************************************************************************ +/**************************************************************************** * Pre-processor definitions - ************************************************************************************/ -/* Configuration ********************************************************************/ -/* Timer devices may be used for different purposes. One special purpose is to - * control periodic DAC outputs. If CONFIG_STM32_TIMn is defined then - * CONFIG_STM32_TIMn_DAC must also be defined to indicate that timer "n" is intended - * to be used for that purpose. + ****************************************************************************/ + +/* Configuration ************************************************************/ + +/* Timer devices may be used for different purposes. One special purpose is + * to control periodic DAC outputs. If CONFIG_STM32_TIMn is defined then + * CONFIG_STM32_TIMn_DAC must also be defined to indicate that timer "n" is + * intended to be used for that purpose. */ #ifndef CONFIG_STM32_TIM1 @@ -100,9 +102,9 @@ # undef CONFIG_STM32_TIM14_DAC #endif -/************************************************************************************ +/**************************************************************************** * Public Types - ************************************************************************************/ + ****************************************************************************/ /* IOCTL commands specific to this driver */ @@ -111,9 +113,9 @@ enum dac_io_cmds IO_DMABUFFER_INIT = 0, }; -/************************************************************************************ +/**************************************************************************** * Public Function Prototypes - ************************************************************************************/ + ****************************************************************************/ #ifndef __ASSEMBLY__ #ifdef __cplusplus