Indent the include statement by two spaces
follow the coding style Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
parent
26361ee1d2
commit
7a8cf7ff70
130 changed files with 167 additions and 169 deletions
|
@ -26,7 +26,7 @@
|
|||
****************************************************************************/
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -72,15 +72,15 @@
|
|||
#include <nuttx/arch.h>
|
||||
|
||||
#if defined(CHRDEV_CAN)
|
||||
# include <nuttx/can/can.h>
|
||||
# include <nuttx/can/can.h>
|
||||
#endif
|
||||
|
||||
#if defined(SOCKET_CAN)
|
||||
# include <nuttx/can.h>
|
||||
# include <nuttx/net/netdev.h>
|
||||
# include <nuttx/net/can.h>
|
||||
# include <nuttx/wqueue.h>
|
||||
# include <string.h>
|
||||
# include <nuttx/can.h>
|
||||
# include <nuttx/net/netdev.h>
|
||||
# include <nuttx/net/can.h>
|
||||
# include <nuttx/wqueue.h>
|
||||
# include <string.h>
|
||||
#endif
|
||||
|
||||
#include "arm_internal.h"
|
||||
|
|
|
@ -32,9 +32,9 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifdef CONFIG_ARCH_FAMILY_AVR32
|
||||
# include <arch/avr32/arch.h>
|
||||
# include <arch/avr32/arch.h>
|
||||
#else
|
||||
# include <arch/avr/arch.h>
|
||||
# include <arch/avr/arch.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -47,9 +47,9 @@
|
|||
*/
|
||||
|
||||
#ifdef CONFIG_ARCH_FAMILY_AVR32
|
||||
# include <arch/avr32/irq.h>
|
||||
# include <arch/avr32/irq.h>
|
||||
#else
|
||||
# include <arch/avr/irq.h>
|
||||
# include <arch/avr/irq.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -28,9 +28,9 @@
|
|||
/* Include AVR architecture-specific limits */
|
||||
|
||||
#ifdef CONFIG_ARCH_FAMILY_AVR32
|
||||
# include <arch/avr32/limits.h>
|
||||
# include <arch/avr32/limits.h>
|
||||
#else
|
||||
# include <arch/avr/limits.h>
|
||||
# include <arch/avr/limits.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -32,9 +32,9 @@
|
|||
/* Include AVR architecture-specific types definitions */
|
||||
|
||||
#ifdef CONFIG_ARCH_FAMILY_AVR32
|
||||
# include <arch/avr32/types.h>
|
||||
# include <arch/avr32/types.h>
|
||||
#else
|
||||
# include <arch/avr/types.h>
|
||||
# include <arch/avr/types.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -34,9 +34,9 @@
|
|||
#endif
|
||||
|
||||
#ifdef CONFIG_ARCH_FAMILY_AVR32
|
||||
# include "avr32.h"
|
||||
# include "avr32.h"
|
||||
#else
|
||||
# include "avr.h"
|
||||
# include "avr.h"
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -47,9 +47,9 @@
|
|||
*/
|
||||
|
||||
#if defined(CONFIG_ARCH_HC12)
|
||||
# include <arch/hc12/irq.h>
|
||||
# include <arch/hc12/irq.h>
|
||||
#elif defined(CONFIG_ARCH_HCS12)
|
||||
# include <arch/hcs12/irq.h>
|
||||
# include <arch/hcs12/irq.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -28,9 +28,9 @@
|
|||
/* Include architecture-specific limits definitions */
|
||||
|
||||
#if defined(CONFIG_ARCH_HC12)
|
||||
# include <arch/hc12/limits.h>
|
||||
# include <arch/hc12/limits.h>
|
||||
#elif defined(CONFIG_ARCH_HCS12)
|
||||
# include <arch/hcs12/limits.h>
|
||||
# include <arch/hcs12/limits.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -32,9 +32,9 @@
|
|||
/* Include architecture-specific limits definitions */
|
||||
|
||||
#if defined(CONFIG_ARCH_HC12)
|
||||
# include <arch/hc12/types.h>
|
||||
# include <arch/hc12/types.h>
|
||||
#elif defined(CONFIG_ARCH_HCS12)
|
||||
# include <arch/hcs12/types.h>
|
||||
# include <arch/hcs12/types.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -47,7 +47,7 @@
|
|||
*/
|
||||
|
||||
#ifdef CONFIG_ARCH_MIPS32
|
||||
# include <arch/mips32/irq.h>
|
||||
# include <arch/mips32/irq.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -38,10 +38,10 @@
|
|||
#include <arch/chip/irq.h>
|
||||
|
||||
#ifdef CONFIG_ARCH_CHIP_LM32
|
||||
# include <arch/lm32/irq.h>
|
||||
# include <arch/lm32/irq.h>
|
||||
#endif
|
||||
#ifdef CONFIG_ARCH_CHIP_MINERVA
|
||||
# include <arch/minerva/irq.h>
|
||||
# include <arch/minerva/irq.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
#include <syslog.h>
|
||||
|
||||
#ifdef CONFIG_STACK_OVERFLOW_CHECK
|
||||
# include "sched/sched.h"
|
||||
# include "sched/sched.h"
|
||||
#endif
|
||||
|
||||
#include "riscv_internal.h"
|
||||
|
|
|
@ -23,21 +23,21 @@
|
|||
****************************************************************************/
|
||||
|
||||
#ifdef VFAT_STANDALONE
|
||||
# include <stdio.h>
|
||||
# include <stdlib.h>
|
||||
# include <syslog.h>
|
||||
# include <zlib.h>
|
||||
# include <stdio.h>
|
||||
# include <stdlib.h>
|
||||
# include <syslog.h>
|
||||
# include <zlib.h>
|
||||
#else
|
||||
# include <nuttx/config.h>
|
||||
# include <nuttx/config.h>
|
||||
|
||||
# include <syslog.h>
|
||||
# include <stdlib.h>
|
||||
# include <debug.h>
|
||||
# include <zlib.h>
|
||||
# include <syslog.h>
|
||||
# include <stdlib.h>
|
||||
# include <debug.h>
|
||||
# include <zlib.h>
|
||||
|
||||
# include <nuttx/kmalloc.h>
|
||||
# include <nuttx/kmalloc.h>
|
||||
|
||||
# include "sim_internal.h"
|
||||
# include "sim_internal.h"
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -47,7 +47,7 @@
|
|||
*/
|
||||
|
||||
#ifdef CONFIG_ARCH_SPARC_V8
|
||||
# include <arch/sparc_v8/irq.h>
|
||||
# include <arch/sparc_v8/irq.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
# include <stdbool.h>
|
||||
#endif
|
||||
|
||||
# include "sparc_v8.h"
|
||||
# include "sparc_v8.h"
|
||||
|
||||
/****************************************************************************
|
||||
* Pre-processor Definitions
|
||||
|
|
|
@ -33,12 +33,12 @@
|
|||
|
||||
/* Include chip-specific definitions */
|
||||
|
||||
# include <arch/chip/arch.h>
|
||||
# include <arch/chip/arch.h>
|
||||
|
||||
/* Include architecture-specific definitions */
|
||||
|
||||
#ifdef CONFIG_ARCH_I486
|
||||
# include <arch/i486/arch.h>
|
||||
# include <arch/i486/arch.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
*/
|
||||
|
||||
#ifdef CONFIG_ARCH_I486
|
||||
# include <arch/i486/io.h>
|
||||
# include <arch/i486/io.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
/* Include architecture-specific limits */
|
||||
|
||||
#ifdef CONFIG_ARCH_I486
|
||||
# include <arch/i486/limits.h>
|
||||
# include <arch/i486/limits.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
/* Include architecture-specific limits */
|
||||
|
||||
#ifdef CONFIG_ARCH_I486
|
||||
# include <arch/i486/types.h>
|
||||
# include <arch/i486/types.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -33,12 +33,12 @@
|
|||
|
||||
/* Include chip-specific definitions */
|
||||
|
||||
# include <arch/chip/arch.h>
|
||||
# include <arch/chip/arch.h>
|
||||
|
||||
/* Include architecture-specific definitions */
|
||||
|
||||
#ifdef CONFIG_ARCH_INTEL64
|
||||
# include <arch/intel64/arch.h>
|
||||
# include <arch/intel64/arch.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
*/
|
||||
|
||||
#ifdef CONFIG_ARCH_INTEL64
|
||||
# include <arch/intel64/io.h>
|
||||
# include <arch/intel64/io.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
*/
|
||||
|
||||
#ifdef CONFIG_ARCH_INTEL64
|
||||
# include <arch/intel64/irq.h>
|
||||
# include <arch/intel64/irq.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
/* Include architecture-specific limits */
|
||||
|
||||
#ifdef CONFIG_ARCH_INTEL64
|
||||
# include <arch/intel64/limits.h>
|
||||
# include <arch/intel64/limits.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
/* Include architecture-specific limits */
|
||||
|
||||
#ifdef CONFIG_ARCH_INTEL64
|
||||
# include <arch/intel64/types.h>
|
||||
# include <arch/intel64/types.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
#define GD32_BOARD_SYSCLK_PLL_HXTAL
|
||||
|
|
|
@ -28,10 +28,10 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdbool.h>
|
||||
# include <stdint.h>
|
||||
# include <stdbool.h>
|
||||
|
||||
# include <arch/chip/kinetis_mcg.h>
|
||||
# include <arch/chip/kinetis_mcg.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include <nuttx/config.h>
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -28,8 +28,8 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdbool.h>
|
||||
# include <stdint.h>
|
||||
# include <stdbool.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include <nuttx/config.h>
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include <nuttx/config.h>
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include <nuttx/config.h>
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include <nuttx/config.h>
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include <nuttx/config.h>
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -27,8 +27,8 @@
|
|||
|
||||
#include <nuttx/config.h>
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include "lpc31_cgudrvr.h"
|
||||
# include <stdint.h>
|
||||
# include "lpc31_cgudrvr.h"
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -27,8 +27,8 @@
|
|||
|
||||
#include <nuttx/config.h>
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include "lpc31_cgudrvr.h"
|
||||
# include <stdint.h>
|
||||
# include "lpc31_cgudrvr.h"
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -27,8 +27,8 @@
|
|||
|
||||
#include <nuttx/config.h>
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include "lpc31_cgudrvr.h"
|
||||
# include <stdint.h>
|
||||
# include "lpc31_cgudrvr.h"
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
#define HCLK_FREQUENCY 32000000ul /* HSI48 for USB, only some STM32F0xx */
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
#include "rp2040_spisd.h"
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
#include "rp2040_spisd.h"
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
#include "rp2040_spisd.h"
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
#include "rp2040_spisd.h"
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
#include "rp2040_spisd.h"
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
#include "rp2040_spisd.h"
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
#include "rp2040_spisd.h"
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
#include "stm32_rcc.h"
|
||||
#include "stm32_sdio.h"
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include <nuttx/config.h>
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
#include "stm32_rcc.h"
|
||||
#include "stm32_sdio.h"
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include <nuttx/config.h>
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
#include "stm32_rcc.h"
|
||||
#include "stm32_sdio.h"
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include <nuttx/config.h>
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
#include "stm32_rcc.h"
|
||||
#include "stm32_sdio.h"
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
#include "stm32_rcc.h"
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include <nuttx/config.h>
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
#ifdef __KERNEL__
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include <nuttx/config.h>
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
#include <stm32.h>
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/* Do not include STM32 F4 header files here */
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include <nuttx/config.h>
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
#include <stm32.h>
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include <nuttx/config.h>
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/* Clocking *****************************************************************/
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include <nuttx/config.h>
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include <nuttx/config.h>
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
#include "stm32_rcc.h"
|
||||
#include "stm32.h"
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
#include "stm32_rcc.h"
|
||||
#include "stm32_sdio.h"
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
#include "stm32_rcc.h"
|
||||
#include "stm32.h"
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
#include "stm32_rcc.h"
|
||||
#include "stm32_sdio.h"
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
#include "stm32_rcc.h"
|
||||
#include "stm32_sdio.h"
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
#include "stm32_rcc.h"
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/* Logic in arch/arm/src and boards/ may need to include these file prior to
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include <nuttx/config.h>
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
#include "stm32_rcc.h"
|
||||
#include "stm32_sdio.h"
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
#include "stm32_rcc.h"
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
#include <nuttx/board.h>
|
||||
#include <arch/board/board.h>
|
||||
#ifdef CONFIG_SENSORS_HYT271
|
||||
# include <nuttx/sensors/hyt271.h>
|
||||
# include <nuttx/sensors/hyt271.h>
|
||||
#endif
|
||||
|
||||
#include "chip.h"
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
#include "stm32_rcc.h"
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include <nuttx/config.h>
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
#include <stm32.h>
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include <nuttx/config.h>
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
#include <stm32.h>
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/* DO NOT include STM32 internal header files here */
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include <nuttx/config.h>
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
#include "stm32_rcc.h"
|
||||
#include "stm32.h"
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
#include "stm32_rcc.h"
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
#include "stm32_rcc.h"
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
#include "stm32_rcc.h"
|
||||
|
@ -38,9 +38,9 @@
|
|||
/* Clocking *****************************************************************/
|
||||
|
||||
#if defined(CONFIG_ARCH_CHIP_STM32F107VC)
|
||||
# include <arch/board/board-stm32f107vct6.h>
|
||||
# include <arch/board/board-stm32f107vct6.h>
|
||||
#elif defined(CONFIG_ARCH_CHIP_STM32F103VC)
|
||||
# include <arch/board/board-stm32f103vct6.h>
|
||||
# include <arch/board/board-stm32f103vct6.h>
|
||||
#else
|
||||
# error Unrecognized STM32 chip
|
||||
#endif
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/* Do not include STM32 F7 header files here */
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/* Do not include STM32 F7 header files here */
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/* No not include STM32 F7 header files here. */
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/* Do not include STM32F7 header files here */
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/* Do not include STM32F7 header files here */
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/* Do not include STM32 H7 header files here */
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/* Do not include STM32 H7 header files here */
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/* Do not include STM32 H7 header files here */
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include <nuttx/config.h>
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include <nuttx/config.h>
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/* Clocking *****************************************************************/
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include <nuttx/config.h>
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include <nuttx/config.h>
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/* Clocking *****************************************************************/
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include <nuttx/config.h>
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include <nuttx/config.h>
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/* Clocking *****************************************************************/
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include <nuttx/config.h>
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include <nuttx/config.h>
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/* Do not include STM32 L4 header files here */
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
|
||||
#include <nuttx/config.h>
|
||||
#ifndef __ASSEMBLY__
|
||||
# include <stdint.h>
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
|
||||
/* Clocking *****************************************************************/
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue