Skip to content

Commit 65cade5

Browse files
committed
TAB converts to Spaces
1 parent 5409cee commit 65cade5

File tree

3 files changed

+30
-26
lines changed

3 files changed

+30
-26
lines changed

bsp/bluetrum/ab32vg1-ab-prougen/.config

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ CONFIG_RT_TIMER_THREAD_STACK_SIZE=256
2929
#
3030
# CONFIG_RT_KSERVICE_USING_STDLIB is not set
3131
# CONFIG_RT_KSERVICE_USING_TINY_SIZE is not set
32+
# CONFIG_RT_USING_ASM_MEMCPY is not set
3233
CONFIG_RT_DEBUG=y
3334
# CONFIG_RT_DEBUG_COLOR is not set
3435
# CONFIG_RT_DEBUG_INIT_CONFIG is not set
@@ -74,6 +75,7 @@ CONFIG_RT_USING_DEVICE_OPS=y
7475
CONFIG_RT_USING_CONSOLE=y
7576
CONFIG_RT_CONSOLEBUF_SIZE=128
7677
CONFIG_RT_CONSOLE_DEVICE_NAME="uart0"
78+
# CONFIG_RT_PRINTF_LONGLONG is not set
7779
CONFIG_RT_VER_NUM=0x40004
7880
# CONFIG_RT_USING_CPU_FFS is not set
7981
# CONFIG_ARCH_CPU_STACK_GROWS_UPWARD is not set
@@ -162,7 +164,7 @@ CONFIG_RT_USING_PIN=y
162164
CONFIG_RT_USING_LIBC=y
163165
# CONFIG_RT_USING_PTHREADS is not set
164166
# CONFIG_RT_USING_MODULE is not set
165-
CONFIG_RT_LIBC_FIXED_TIMEZONE=8
167+
CONFIG_RT_LIBC_DEFAULT_TIMEZONE=8
166168

167169
#
168170
# Network
@@ -568,6 +570,7 @@ CONFIG_RT_LIBC_FIXED_TIMEZONE=8
568570
#
569571
CONFIG_BSP_USING_UART=y
570572
CONFIG_BSP_USING_UART0=y
573+
CONFIG_BSP_UART0_FIFO_SIZE=10
571574
# CONFIG_BSP_USING_UART1 is not set
572575
# CONFIG_BSP_USING_UART2 is not set
573576
# CONFIG_BSP_USING_SDIO is not set

bsp/bluetrum/ab32vg1-ab-prougen/board/Kconfig

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -29,40 +29,40 @@ endmenu
2929

3030
menu "On-chip Peripheral Drivers"
3131
menuconfig BSP_USING_UART
32-
bool "Enable UART"
32+
bool "Enable UART"
3333
if BSP_USING_UART
3434
config BSP_USING_UART0
3535
bool "Enable UART0"
3636
select RT_USING_SERIAL
3737
default y
38-
if BSP_USING_UART0
39-
config BSP_UART0_FIFO_SIZE
40-
int "BSP_UART0_FIFO_SIZE"
41-
range 5 255
42-
default 10
43-
endif
38+
if BSP_USING_UART0
39+
config BSP_UART0_FIFO_SIZE
40+
int "BSP_UART0_FIFO_SIZE"
41+
range 5 255
42+
default 10
43+
endif
4444

4545
config BSP_USING_UART1
4646
bool "Enable UART1"
4747
select RT_USING_SERIAL
4848
default n
49-
if BSP_USING_UART1
50-
config BSP_UART1_FIFO_SIZE
51-
int "BSP_UART1_FIFO_SIZE"
52-
range 5 255
53-
default 10
54-
endif
49+
if BSP_USING_UART1
50+
config BSP_UART1_FIFO_SIZE
51+
int "BSP_UART1_FIFO_SIZE"
52+
range 5 255
53+
default 10
54+
endif
5555

5656
config BSP_USING_UART2
5757
bool "Enable UART2"
5858
select RT_USING_SERIAL
5959
default n
60-
if BSP_USING_UART2
61-
config BSP_UART2_FIFO_SIZE
62-
int "BSP_UART2_FIFO_SIZE"
63-
range 5 255
64-
default 10
65-
endif
60+
if BSP_USING_UART2
61+
config BSP_UART2_FIFO_SIZE
62+
int "BSP_UART2_FIFO_SIZE"
63+
range 5 255
64+
default 10
65+
endif
6666
endif
6767

6868
config BSP_USING_SDIO
@@ -194,12 +194,12 @@ menu "On-chip Peripheral Drivers"
194194
default n
195195
if BSP_USING_ONCHIP_RTC
196196
config RTC_USING_INTERNAL_CLK
197-
bool "Using internal clock RTC"
198-
default y
197+
bool "Using internal clock RTC"
198+
default y
199199
config RTC_USING_1S_INT
200-
bool "Using 1 second interrupt"
201-
depends on RT_USING_ALARM
202-
default n
200+
bool "Using 1 second interrupt"
201+
depends on RT_USING_ALARM
202+
default n
203203
endif
204204

205205
menuconfig BSP_USING_ADC

bsp/bluetrum/ab32vg1-ab-prougen/rtconfig.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
/* POSIX layer and C standard library */
9292

9393
#define RT_USING_LIBC
94-
#define RT_LIBC_FIXED_TIMEZONE 8
94+
#define RT_LIBC_DEFAULT_TIMEZONE 8
9595

9696
/* Network */
9797

@@ -176,6 +176,7 @@
176176

177177
#define BSP_USING_UART
178178
#define BSP_USING_UART0
179+
#define BSP_UART0_FIFO_SIZE 10
179180

180181
/* Board extended module Drivers */
181182

0 commit comments

Comments
 (0)