From 19ec36bc6ef096cc161f67341857487788464c85 Mon Sep 17 00:00:00 2001
From: supperthomas <78900636@qq.com>
Date: Sat, 26 Jun 2021 07:03:45 +0800
Subject: [PATCH] rebuild the Kconfig
---
bsp/nrf5x/nrf52840/.config | 44 +-
bsp/nrf5x/nrf52840/board/Kconfig | 511 ++++++++-------
bsp/nrf5x/nrf52840/project.uvoptx | 974 ++++++++++++++++-------------
bsp/nrf5x/nrf52840/project.uvprojx | 364 ++++++-----
bsp/nrf5x/nrf52840/rtconfig.h | 16 +-
5 files changed, 1081 insertions(+), 828 deletions(-)
diff --git a/bsp/nrf5x/nrf52840/.config b/bsp/nrf5x/nrf52840/.config
index f9c63e767c..9612d30606 100644
--- a/bsp/nrf5x/nrf52840/.config
+++ b/bsp/nrf5x/nrf52840/.config
@@ -15,7 +15,7 @@ CONFIG_RT_THREAD_PRIORITY_32=y
# CONFIG_RT_THREAD_PRIORITY_256 is not set
CONFIG_RT_THREAD_PRIORITY_MAX=32
CONFIG_RT_TICK_PER_SECOND=100
-CONFIG_RT_USING_OVERFLOW_CHECK=y
+# CONFIG_RT_USING_OVERFLOW_CHECK is not set
CONFIG_RT_USING_HOOK=y
CONFIG_RT_USING_IDLE_HOOK=y
CONFIG_RT_IDLE_HOOK_LIST_SIZE=4
@@ -29,18 +29,7 @@ CONFIG_RT_TIMER_THREAD_STACK_SIZE=512
#
# CONFIG_RT_KSERVICE_USING_STDLIB is not set
# CONFIG_RT_KSERVICE_USING_TINY_SIZE is not set
-CONFIG_RT_DEBUG=y
-# CONFIG_RT_DEBUG_COLOR is not set
-# CONFIG_RT_DEBUG_INIT_CONFIG is not set
-# CONFIG_RT_DEBUG_THREAD_CONFIG is not set
-# CONFIG_RT_DEBUG_SCHEDULER_CONFIG is not set
-# CONFIG_RT_DEBUG_IPC_CONFIG is not set
-# CONFIG_RT_DEBUG_TIMER_CONFIG is not set
-# CONFIG_RT_DEBUG_IRQ_CONFIG is not set
-# CONFIG_RT_DEBUG_MEM_CONFIG is not set
-# CONFIG_RT_DEBUG_SLAB_CONFIG is not set
-# CONFIG_RT_DEBUG_MEMHEAP_CONFIG is not set
-# CONFIG_RT_DEBUG_MODULE_CONFIG is not set
+# CONFIG_RT_DEBUG is not set
#
# Inter-Thread communication
@@ -48,8 +37,8 @@ CONFIG_RT_DEBUG=y
CONFIG_RT_USING_SEMAPHORE=y
CONFIG_RT_USING_MUTEX=y
CONFIG_RT_USING_EVENT=y
-CONFIG_RT_USING_MAILBOX=y
-CONFIG_RT_USING_MESSAGEQUEUE=y
+# CONFIG_RT_USING_MAILBOX is not set
+# CONFIG_RT_USING_MESSAGEQUEUE is not set
# CONFIG_RT_USING_SIGNALS is not set
#
@@ -106,7 +95,7 @@ CONFIG_FINSH_CMD_SIZE=80
# CONFIG_FINSH_USING_AUTH is not set
CONFIG_FINSH_USING_MSH=y
CONFIG_FINSH_USING_MSH_DEFAULT=y
-CONFIG_FINSH_USING_MSH_ONLY=y
+# CONFIG_FINSH_USING_MSH_ONLY is not set
CONFIG_FINSH_ARG_MAX=10
#
@@ -560,27 +549,44 @@ CONFIG_SOC_NRF52840=y
CONFIG_SOC_NORDIC=y
CONFIG_BSP_BOARD_PCA_10056=y
+#
+# Onboard Peripheral Drivers
+#
+CONFIG_BSP_USING_JLINK_TO_USART=y
+# CONFIG_BSP_USING_QSPI_FLASH is not set
+
#
# On-chip Peripheral Drivers
#
CONFIG_BSP_USING_GPIO=y
-CONFIG_NRFX_GPIOTE_ENABLED=1
CONFIG_BSP_USING_UART=y
+CONFIG_NRFX_USING_UART=y
+# CONFIG_NRFX_USING_UARTE is not set
CONFIG_BSP_USING_UART0=y
CONFIG_BSP_UART0_RX_PIN=8
CONFIG_BSP_UART0_TX_PIN=6
+# CONFIG_BSP_USING_SAADC is not set
+# CONFIG_BSP_USING_I2C is not set
+# CONFIG_BSP_USING_SPI is not set
+# CONFIG_BSP_USING_PWM is not set
+# CONFIG_BSP_USING_WDT is not set
+# CONFIG_BSP_USING_ONCHIP_RTC is not set
+# CONFIG_BSP_USING_ON_CHIP_FLASH is not set
#
-# On-chip flash config
+# MCU flash config
#
CONFIG_MCU_FLASH_START_ADDRESS=0x00000000
CONFIG_MCU_FLASH_SIZE_KB=1024
CONFIG_MCU_SRAM_START_ADDRESS=0x20000000
CONFIG_MCU_SRAM_SIZE_KB=256
CONFIG_MCU_FLASH_PAGE_SIZE=0x1000
+CONFIG_BLE_STACK_USING_NULL=y
+# CONFIG_BSP_USING_SOFTDEVICE is not set
+# CONFIG_BSP_USING_NIMBLE is not set
CONFIG_NRFX_CLOCK_ENABLED=1
CONFIG_NRFX_CLOCK_DEFAULT_CONFIG_IRQ_PRIORITY=7
CONFIG_NRFX_CLOCK_CONFIG_LF_SRC=1
-CONFIG_NRFX_USING_UART=y
CONFIG_NRFX_UART_ENABLED=1
CONFIG_NRFX_UART0_ENABLED=1
+CONFIG_NRFX_GPIOTE_ENABLED=1
diff --git a/bsp/nrf5x/nrf52840/board/Kconfig b/bsp/nrf5x/nrf52840/board/Kconfig
index 71e7595048..8a2fe7d49d 100644
--- a/bsp/nrf5x/nrf52840/board/Kconfig
+++ b/bsp/nrf5x/nrf52840/board/Kconfig
@@ -2,31 +2,26 @@ menu "Hardware Drivers Config"
config SOC_NRF52840
bool
- config SOC_NRF52840
select RT_USING_COMPONENTS_INIT
select RT_USING_USER_MAIN
default y
- config NRFX_CLOCK_ENABLED
- int
- default 1
- config NRFX_CLOCK_DEFAULT_CONFIG_IRQ_PRIORITY
- int
- default 7
- config NRFX_CLOCK_CONFIG_LF_SRC
- int
- default 1
-
config SOC_NORDIC
bool
- config SOC_NORDIC
default y
+choice
+ prompt "Select BSP board "
+ default BSP_BOARD_PCA_10056
+
+ config BSP_BOARD_PCA_10056
+ bool "NRF52840 pca10056 "
+
+endchoice
+
menu "Onboard Peripheral Drivers"
config BSP_USING_JLINK_TO_USART
bool "Enable JLINK TO USART (uart0|RX_PIN:8|TX_PIN:6)"
- select BSP_USING_UART
- select BSP_USING_UART0
default y
menuconfig BSP_USING_QSPI_FLASH
@@ -68,135 +63,17 @@ menu "Onboard Peripheral Drivers"
endif
endmenu
+
menu "On-chip Peripheral Drivers"
+
config BSP_USING_GPIO
bool "Enable GPIO"
select RT_USING_PIN
default y
- if BSP_USING_GPIO
- config NRFX_GPIOTE_ENABLED
- int
- default 1
- endif
- config BSP_USING_SAADC
- bool "Enable SAADC"
- select RT_USING_ADC
- default n
- if BSP_USING_SAADC
- config NRFX_SAADC_ENABLED
- int
- default 1
- endif
- menuconfig BSP_USING_PWM
- bool "Enable PWM"
- select RT_USING_PWM
- default n
- if BSP_USING_PWM
- config NRFX_PWM_ENABLED
- int
- default 1
- config BSP_USING_PWM0
- bool "Enable PWM0 bus"
- default y
- if BSP_USING_PWM0
- config NRFX_PWM0_ENABLED
- int
- default 1
- config BSP_USING_PWM0_CH0
- int "PWM0 channel 0 pin number set"
- range 0 47
- default 13
- config BSP_USING_PWM0_CH1
- int "PWM0 channel 1 pin number set"
- range 0 47
- default 14
- config BSP_USING_PWM0_CH2
- int "PWM0 channel 2 pin number set"
- range 0 47
- default 15
- config BSP_USING_PWM0_CH3
- int "PWM0 channel 3 pin number set"
- range 0 47
- default 16
- endif
- config BSP_USING_PWM1
- bool "Enable PWM1 bus"
- default n
- if BSP_USING_PWM1
- config NRFX_PWM1_ENABLED
- int
- default 1
- config BSP_USING_PWM1_CH0
- int "PWM1 channel 0 pin number set"
- range 0 47
- default 13
- config BSP_USING_PWM1_CH1
- int "PWM1 channel 1 pin number set"
- range 0 47
- default 14
- config BSP_USING_PWM1_CH2
- int "PWM1 channel 2 pin number set"
- range 0 47
- default 15
- config BSP_USING_PWM1_CH3
- int "PWM1 channel 3 pin number set"
- range 0 47
- default 16
- endif
- config BSP_USING_PWM2
- bool "Enable PWM2 bus"
- default n
- if BSP_USING_PWM2
- config NRFX_PWM2_ENABLED
- int
- default 1
- config BSP_USING_PWM2_CH0
- int "PWM2 channel 0 pin number set"
- range 0 47
- default 13
- config BSP_USING_PWM2_CH1
- int "PWM2 channel 1 pin number set"
- range 0 47
- default 14
- config BSP_USING_PWM2_CH2
- int "PWM2 channel 2 pin number set"
- range 0 47
- default 15
- config BSP_USING_PWM2_CH3
- int "PWM2 channel 3 pin number set"
- range 0 47
- default 16
- endif
- config BSP_USING_PWM3
- bool "Enable PWM3 bus"
- default n
- if BSP_USING_PWM3
- config NRFX_PWM3_ENABLED
- int
- default 1
- config BSP_USING_PWM3_CH0
- int "PWM3 channel 0 pin number set"
- range 0 47
- default 13
- config BSP_USING_PWM3_CH1
- int "PWM3 channel 1 pin number set"
- range 0 47
- default 14
- config BSP_USING_PWM3_CH2
- int "PWM3 channel 2 pin number set"
- range 0 47
- default 15
- config BSP_USING_PWM3_CH3
- int "PWM3 channel 3 pin number set"
- range 0 47
- default 16
- endif
- endif
-
config BSP_USING_UART
bool "Enable UART"
- default y
+ default n
select RT_USING_SERIAL
if BSP_USING_UART
choice
@@ -212,17 +89,12 @@ menu "On-chip Peripheral Drivers"
endchoice
endif
if BSP_USING_UART&&NRFX_USING_UART
- config NRFX_UART_ENABLED
- int
- default 1
+
config BSP_USING_UART0
bool "Enable UART0"
default y
if BSP_USING_UART0
- config NRFX_UART0_ENABLED
- int
- default 1
config BSP_UART0_RX_PIN
int "uart0 rx pin number"
range 0 31
@@ -271,21 +143,21 @@ menu "On-chip Peripheral Drivers"
default 5
endif
endif
- config BSP_USING_I2C
+
+ config BSP_USING_SAADC
+ bool "Enable ADC"
+ select RT_USING_ADC
+ default n
+
+ menuconfig BSP_USING_I2C
bool "Enable I2C"
select RT_USING_I2C
default n
if BSP_USING_I2C
- config NRFX_TWIM_ENABLED
- int
- default 1
config BSP_USING_I2C0
bool "Enable I2C0 bus"
- default n
+ default y
if BSP_USING_I2C0
- config NRFX_TWIM0_ENABLED
- int
- default 1
config BSP_I2C0_SCL_PIN
int "i2c0 scl pin number"
range 0 31
@@ -299,9 +171,6 @@ menu "On-chip Peripheral Drivers"
bool "Enable I2C1 bus"
default n
if BSP_USING_I2C1
- config NRFX_TWIM1_ENABLED
- int
- default 1
config BSP_I2C1_SCL_PIN
int "i2c1 scl pin number"
range 0 31
@@ -312,15 +181,13 @@ menu "On-chip Peripheral Drivers"
default 2
endif
endif
- config BSP_USING_SPI
+
+ menuconfig BSP_USING_SPI
bool "Enable SPI"
select RT_USING_SPI
default n
if BSP_USING_SPI
- config NRFX_SPI_ENABLED
- int
- default 1
config BSP_USING_SPI0
bool "Enable SPI0 bus"
default y
@@ -350,9 +217,6 @@ menu "On-chip Peripheral Drivers"
bool "Enable SPI1 bus"
default n
if BSP_USING_SPI1
- config NRFX_SPI1_ENABLED
- int "Enable SPI1 instance"
- default 1
config BSP_SPI1_SCK_PIN
int "SPI0 sck pin number set"
range 0 47
@@ -375,9 +239,6 @@ menu "On-chip Peripheral Drivers"
bool "Enable SPI2 bus"
default n
if BSP_USING_SPI2
- config NRFX_SPI2_ENABLED
- int "Enable SPI2 instance"
- default 1
config BSP_SPI2_SCK_PIN
int "SPI0 sck pin number set"
range 0 47
@@ -397,12 +258,119 @@ menu "On-chip Peripheral Drivers"
endif
endif
+
+ menuconfig BSP_USING_PWM
+ bool "Enable PWM"
+ select RT_USING_PWM
+ default n
+ if BSP_USING_PWM
+ config BSP_USING_PWM0
+ bool "Enable PWM0 bus"
+ default y
+ if BSP_USING_PWM0
+ config BSP_USING_PWM0_CH0
+ int "PWM0 channel 0 pin number set"
+ range 0 47
+ default 13
+ config BSP_USING_PWM0_CH1
+ int "PWM0 channel 1 pin number set"
+ range 0 47
+ default 14
+ config BSP_USING_PWM0_CH2
+ int "PWM0 channel 2 pin number set"
+ range 0 47
+ default 15
+ config BSP_USING_PWM0_CH3
+ int "PWM0 channel 3 pin number set"
+ range 0 47
+ default 16
+ endif
+ config BSP_USING_PWM1
+ bool "Enable PWM1 bus"
+ default n
+ if BSP_USING_PWM1
+ config NRFX_PWM1_ENABLED
+ int
+ default 1
+ config BSP_USING_PWM1_CH0
+ int "PWM1 channel 0 pin number set"
+ range 0 47
+ default 13
+ config BSP_USING_PWM1_CH1
+ int "PWM1 channel 1 pin number set"
+ range 0 47
+ default 14
+ config BSP_USING_PWM1_CH2
+ int "PWM1 channel 2 pin number set"
+ range 0 47
+ default 15
+ config BSP_USING_PWM1_CH3
+ int "PWM1 channel 3 pin number set"
+ range 0 47
+ default 16
+ endif
+ config BSP_USING_PWM2
+ bool "Enable PWM2 bus"
+ default n
+ if BSP_USING_PWM2
+ config BSP_USING_PWM2_CH0
+ int "PWM2 channel 0 pin number set"
+ range 0 47
+ default 13
+ config BSP_USING_PWM2_CH1
+ int "PWM2 channel 1 pin number set"
+ range 0 47
+ default 14
+ config BSP_USING_PWM2_CH2
+ int "PWM2 channel 2 pin number set"
+ range 0 47
+ default 15
+ config BSP_USING_PWM2_CH3
+ int "PWM2 channel 3 pin number set"
+ range 0 47
+ default 16
+ endif
+ config BSP_USING_PWM3
+ bool "Enable PWM3 bus"
+ default n
+ if BSP_USING_PWM3
+ config BSP_USING_PWM3_CH0
+ int "PWM3 channel 0 pin number set"
+ range 0 47
+ default 13
+ config BSP_USING_PWM3_CH1
+ int "PWM3 channel 1 pin number set"
+ range 0 47
+ default 14
+ config BSP_USING_PWM3_CH2
+ int "PWM3 channel 2 pin number set"
+ range 0 47
+ default 15
+ config BSP_USING_PWM3_CH3
+ int "PWM3 channel 3 pin number set"
+ range 0 47
+ default 16
+ endif
+ endif
+
+ config BSP_USING_WDT
+ bool "Enable WDT"
+ select RT_USING_WDT
+ default n
+
+ menuconfig BSP_USING_ONCHIP_RTC
+ bool "Enable RTC"
+ select RT_USING_RTC
+ select RT_USING_LIBC
+ default n
+
+
config BSP_USING_ON_CHIP_FLASH
select PKG_USING_FAL
bool "Enable on-chip FLASH"
default n
- menu "On-chip flash config"
+ menu "MCU flash config"
config MCU_FLASH_START_ADDRESS
hex "MCU FLASH START ADDRESS"
@@ -410,71 +378,20 @@ menu "On-chip Peripheral Drivers"
config MCU_FLASH_SIZE_KB
int "MCU FLASH SIZE, MAX size 1024 KB"
- range 1 1024
- default 1024
+ default 1024
config MCU_SRAM_START_ADDRESS
hex "MCU RAM START ADDRESS"
default 0x20000000
- config MCU_SRAM_SIZE_KB
- int "MCU RAM SIZE, MAX size 256 KB"
- range 1 256
+ config MCU_SRAM_SIZE_KB
+ int "MCU RAM SIZE"
default 256
config MCU_FLASH_PAGE_SIZE
hex "MCU FLASH PAGE SIZE, please not change,nrfx default is 0x1000"
- range 0x1000 0x1000
default 0x1000
endmenu
- config BSP_USING_WDT
- bool "Enable WDT"
- select RT_USING_WDT
- default n
- if BSP_USING_WDT
- config NRFX_WDT_ENABLED
- int
- default 1
- config NRFX_WDT0_ENABLED
- int
- default 1
- config NRFX_WDT_CONFIG_NO_IRQ
- int
- default 1
- endif
-
- menuconfig BSP_USING_ONCHIP_RTC
- bool "Enable RTC"
- select RT_USING_RTC
- select RT_USING_LIBC
- default n
- if BSP_USING_ONCHIP_RTC
- config NRFX_CLOCK_ENABLED
- int
- default 1
- config NRFX_CLOCK_DEFAULT_CONFIG_IRQ_PRIORITY
- int
- default 7
- config NRFX_RTC_ENABLED
- int
- default 1
- config NRFX_RTC0_ENABLED
- int
- default 1
- config NRFX_RTC1_ENABLED
- int
- default 1
- config NRFX_RTC2_ENABLED
- int
- default 1
- config RTC_INSTANCE_ID
- int
- default 2
- config RTC_INSTANCE_ID
- int "select RTC instance id, must be 0, 1, 2"
- range 0 2
- default 2
- endif
endmenu
@@ -497,6 +414,166 @@ config BSP_USING_NIMBLE
bool "use nimble stack(iot)"
endchoice
+if SOC_NORDIC
+ config NRFX_CLOCK_ENABLED
+ int
+ default 1
+ config NRFX_CLOCK_DEFAULT_CONFIG_IRQ_PRIORITY
+ int
+ default 7
+ config NRFX_CLOCK_CONFIG_LF_SRC
+ int
+ default 1
+endif
+
+if BSP_USING_UART
+ config NRFX_USING_UART
+ bool
+ default y
+
+ config NRFX_UART_ENABLED
+ int
+ default 1
+if BSP_USING_UART0
+ config NRFX_UART0_ENABLED
+ int
+ default 1
+endif
+
+if NRFX_USING_UART
+ config NRFX_UART_ENABLED
+ int
+ default 1
+endif
+
+if NRFX_USING_UARTE
+ config NRFX_UARTE0_ENABLED
+ int
+ default 1
+endif
+
+
+endif
+
+if BSP_USING_GPIO
+ config NRFX_GPIOTE_ENABLED
+ int
+ default 1
+endif
+
+if BSP_USING_SAADC
+ config NRFX_SAADC_ENABLED
+ int
+ default 1
+endif
+
+if BSP_USING_I2C
+ config NRFX_TWIM_ENABLED
+ int
+ default 1
+ if BSP_USING_I2C0
+ config NRFX_TWIM0_ENABLED
+ int
+ default 1
+ endif
+
+ if BSP_USING_I2C1
+ config NRFX_TWIM1_ENABLED
+ int
+ default 1
+ endif
+endif
+
+if BSP_USING_SPI
+ config NRFX_SPI_ENABLED
+ int
+ default 1
+
+ if BSP_USING_SPI0
+ config NRFX_SPI0_ENABLED
+ int
+ default 1
+ endif
+
+ if BSP_USING_SPI1
+ config NRFX_SPI1_ENABLED
+ int
+ default 1
+ endif
+
+ if BSP_USING_SPI2
+ config NRFX_SPI2_ENABLED
+ int
+ default 1
+ endif
+endif
+
+if BSP_USING_PWM
+ config NRFX_PWM_ENABLED
+ int
+ default 1
+ if BSP_USING_PWM0
+ config NRFX_PWM0_ENABLED
+ int
+ default 1
+ endif
+ if BSP_USING_PWM1
+ config NRFX_PWM1_ENABLED
+ int
+ default 1
+ endif
+ if BSP_USING_PWM2
+ config NRFX_PWM2_ENABLED
+ int
+ default 1
+ endif
+ if BSP_USING_PWM3
+ config NRFX_PWM3_ENABLED
+ int
+ default 1
+ endif
+
+endif
+
+if BSP_USING_WDT
+ config NRFX_WDT_ENABLED
+ int
+ default 1
+ config NRFX_WDT0_ENABLED
+ int
+ default 1
+ config NRFX_WDT_CONFIG_NO_IRQ
+ int
+ default 1
+endif
+
+if BSP_USING_ONCHIP_RTC
+ config NRFX_CLOCK_ENABLED
+ int
+ default 1
+ config NRFX_CLOCK_DEFAULT_CONFIG_IRQ_PRIORITY
+ int
+ default 7
+ config NRFX_RTC_ENABLED
+ int
+ default 1
+ config NRFX_RTC0_ENABLED
+ int
+ default 1
+ config NRFX_RTC1_ENABLED
+ int
+ default 1
+ config NRFX_RTC2_ENABLED
+ int
+ default 1
+ config RTC_INSTANCE_ID
+ int
+ default 2
+ config RTC_INSTANCE_ID
+ int
+ range 0 2
+ default 2
+endif
endmenu
diff --git a/bsp/nrf5x/nrf52840/project.uvoptx b/bsp/nrf5x/nrf52840/project.uvoptx
index 376d1dc34b..232521460c 100644
--- a/bsp/nrf5x/nrf52840/project.uvoptx
+++ b/bsp/nrf5x/nrf52840/project.uvoptx
@@ -183,7 +183,7 @@
Applications
- 0
+ 1
0
0
0
@@ -214,8 +214,8 @@
0
0
0
- ..\..\..\libcpu\arm\common\div0.c
- div0.c
+ ..\..\..\libcpu\arm\common\backtrace.c
+ backtrace.c
0
0
@@ -238,8 +238,8 @@
0
0
0
- ..\..\..\libcpu\arm\common\backtrace.c
- backtrace.c
+ ..\..\..\libcpu\arm\common\div0.c
+ div0.c
0
0
@@ -306,8 +306,8 @@
0
0
0
- ..\..\..\components\drivers\src\workqueue.c
- workqueue.c
+ ..\..\..\components\drivers\src\waitqueue.c
+ waitqueue.c
0
0
@@ -318,8 +318,8 @@
0
0
0
- ..\..\..\components\drivers\src\ringbuffer.c
- ringbuffer.c
+ ..\..\..\components\drivers\src\workqueue.c
+ workqueue.c
0
0
@@ -330,18 +330,6 @@
0
0
0
- ..\..\..\components\drivers\src\waitqueue.c
- waitqueue.c
- 0
- 0
-
-
- 3
- 12
- 1
- 0
- 0
- 0
..\..\..\components\drivers\src\completion.c
completion.c
0
@@ -349,7 +337,7 @@
3
- 13
+ 12
1
0
0
@@ -359,6 +347,18 @@
0
0
+
+ 3
+ 13
+ 1
+ 0
+ 0
+ 0
+ ..\..\..\components\drivers\src\ringbuffer.c
+ ringbuffer.c
+ 0
+ 0
+
3
14
@@ -387,7 +387,7 @@
Drivers
- 0
+ 1
0
0
0
@@ -442,8 +442,8 @@
0
0
0
- ..\..\..\components\finsh\shell.c
- shell.c
+ ..\..\..\components\finsh\finsh_node.c
+ finsh_node.c
0
0
@@ -454,8 +454,8 @@
0
0
0
- ..\..\..\components\finsh\msh.c
- msh.c
+ ..\..\..\components\finsh\finsh_parser.c
+ finsh_parser.c
0
0
@@ -471,6 +471,126 @@
0
0
+
+ 5
+ 22
+ 1
+ 0
+ 0
+ 0
+ ..\..\..\components\finsh\msh.c
+ msh.c
+ 0
+ 0
+
+
+ 5
+ 23
+ 1
+ 0
+ 0
+ 0
+ ..\..\..\components\finsh\finsh_vm.c
+ finsh_vm.c
+ 0
+ 0
+
+
+ 5
+ 24
+ 1
+ 0
+ 0
+ 0
+ ..\..\..\components\finsh\shell.c
+ shell.c
+ 0
+ 0
+
+
+ 5
+ 25
+ 1
+ 0
+ 0
+ 0
+ ..\..\..\components\finsh\finsh_var.c
+ finsh_var.c
+ 0
+ 0
+
+
+ 5
+ 26
+ 1
+ 0
+ 0
+ 0
+ ..\..\..\components\finsh\finsh_compiler.c
+ finsh_compiler.c
+ 0
+ 0
+
+
+ 5
+ 27
+ 1
+ 0
+ 0
+ 0
+ ..\..\..\components\finsh\finsh_heap.c
+ finsh_heap.c
+ 0
+ 0
+
+
+ 5
+ 28
+ 1
+ 0
+ 0
+ 0
+ ..\..\..\components\finsh\finsh_ops.c
+ finsh_ops.c
+ 0
+ 0
+
+
+ 5
+ 29
+ 1
+ 0
+ 0
+ 0
+ ..\..\..\components\finsh\finsh_error.c
+ finsh_error.c
+ 0
+ 0
+
+
+ 5
+ 30
+ 1
+ 0
+ 0
+ 0
+ ..\..\..\components\finsh\finsh_token.c
+ finsh_token.c
+ 0
+ 0
+
+
+ 5
+ 31
+ 1
+ 0
+ 0
+ 0
+ ..\..\..\components\finsh\finsh_init.c
+ finsh_init.c
+ 0
+ 0
+
@@ -481,79 +601,7 @@
0
6
- 22
- 1
- 0
- 0
- 0
- ..\..\..\src\thread.c
- thread.c
- 0
- 0
-
-
- 6
- 23
- 1
- 0
- 0
- 0
- ..\..\..\src\ipc.c
- ipc.c
- 0
- 0
-
-
- 6
- 24
- 1
- 0
- 0
- 0
- ..\..\..\src\device.c
- device.c
- 0
- 0
-
-
- 6
- 25
- 1
- 0
- 0
- 0
- ..\..\..\src\object.c
- object.c
- 0
- 0
-
-
- 6
- 26
- 1
- 0
- 0
- 0
- ..\..\..\src\irq.c
- irq.c
- 0
- 0
-
-
- 6
- 27
- 1
- 0
- 0
- 0
- ..\..\..\src\scheduler.c
- scheduler.c
- 0
- 0
-
-
- 6
- 28
+ 32
1
0
0
@@ -565,7 +613,7 @@
6
- 29
+ 33
1
0
0
@@ -575,54 +623,6 @@
0
0
-
- 6
- 30
- 1
- 0
- 0
- 0
- ..\..\..\src\mempool.c
- mempool.c
- 0
- 0
-
-
- 6
- 31
- 1
- 0
- 0
- 0
- ..\..\..\src\components.c
- components.c
- 0
- 0
-
-
- 6
- 32
- 1
- 0
- 0
- 0
- ..\..\..\src\mem.c
- mem.c
- 0
- 0
-
-
- 6
- 33
- 1
- 0
- 0
- 0
- ..\..\..\src\idle.c
- idle.c
- 0
- 0
-
6
34
@@ -635,6 +635,126 @@
0
0
+
+ 6
+ 35
+ 1
+ 0
+ 0
+ 0
+ ..\..\..\src\scheduler.c
+ scheduler.c
+ 0
+ 0
+
+
+ 6
+ 36
+ 1
+ 0
+ 0
+ 0
+ ..\..\..\src\device.c
+ device.c
+ 0
+ 0
+
+
+ 6
+ 37
+ 1
+ 0
+ 0
+ 0
+ ..\..\..\src\ipc.c
+ ipc.c
+ 0
+ 0
+
+
+ 6
+ 38
+ 1
+ 0
+ 0
+ 0
+ ..\..\..\src\irq.c
+ irq.c
+ 0
+ 0
+
+
+ 6
+ 39
+ 1
+ 0
+ 0
+ 0
+ ..\..\..\src\object.c
+ object.c
+ 0
+ 0
+
+
+ 6
+ 40
+ 1
+ 0
+ 0
+ 0
+ ..\..\..\src\mempool.c
+ mempool.c
+ 0
+ 0
+
+
+ 6
+ 41
+ 1
+ 0
+ 0
+ 0
+ ..\..\..\src\components.c
+ components.c
+ 0
+ 0
+
+
+ 6
+ 42
+ 1
+ 0
+ 0
+ 0
+ ..\..\..\src\thread.c
+ thread.c
+ 0
+ 0
+
+
+ 6
+ 43
+ 1
+ 0
+ 0
+ 0
+ ..\..\..\src\idle.c
+ idle.c
+ 0
+ 0
+
+
+ 6
+ 44
+ 1
+ 0
+ 0
+ 0
+ ..\..\..\src\mem.c
+ mem.c
+ 0
+ 0
+
@@ -645,67 +765,19 @@
0
7
- 35
+ 45
1
0
0
0
- packages\nrfx-latest\drivers\src\nrfx_ppi.c
- nrfx_ppi.c
+ packages\nrfx-latest\drivers\src\nrfx_qspi.c
+ nrfx_qspi.c
0
0
7
- 36
- 1
- 0
- 0
- 0
- packages\nrfx-latest\drivers\src\nrfx_twim.c
- nrfx_twim.c
- 0
- 0
-
-
- 7
- 37
- 1
- 0
- 0
- 0
- packages\nrfx-latest\drivers\src\nrfx_temp.c
- nrfx_temp.c
- 0
- 0
-
-
- 7
- 38
- 1
- 0
- 0
- 0
- packages\nrfx-latest\drivers\src\nrfx_rng.c
- nrfx_rng.c
- 0
- 0
-
-
- 7
- 39
- 1
- 0
- 0
- 0
- packages\nrfx-latest\drivers\src\nrfx_twi.c
- nrfx_twi.c
- 0
- 0
-
-
- 7
- 40
+ 46
1
0
0
@@ -717,19 +789,7 @@
7
- 41
- 1
- 0
- 0
- 0
- packages\nrfx-latest\drivers\src\nrfx_nfct.c
- nrfx_nfct.c
- 0
- 0
-
-
- 7
- 42
+ 47
1
0
0
@@ -741,31 +801,19 @@
7
- 43
+ 48
1
0
0
0
- packages\nrfx-latest\drivers\src\nrfx_pwm.c
- nrfx_pwm.c
+ packages\nrfx-latest\drivers\src\nrfx_qdec.c
+ nrfx_qdec.c
0
0
7
- 44
- 1
- 0
- 0
- 0
- packages\nrfx-latest\drivers\src\nrfx_egu.c
- nrfx_egu.c
- 0
- 0
-
-
- 7
- 45
+ 49
1
0
0
@@ -775,54 +823,6 @@
0
0
-
- 7
- 46
- 1
- 0
- 0
- 0
- packages\nrfx-latest\drivers\src\nrfx_uarte.c
- nrfx_uarte.c
- 0
- 0
-
-
- 7
- 47
- 1
- 0
- 0
- 0
- packages\nrfx-latest\drivers\src\nrfx_clock.c
- nrfx_clock.c
- 0
- 0
-
-
- 7
- 48
- 1
- 0
- 0
- 0
- packages\nrfx-latest\drivers\src\nrfx_pdm.c
- nrfx_pdm.c
- 0
- 0
-
-
- 7
- 49
- 1
- 0
- 0
- 0
- packages\nrfx-latest\drivers\src\nrfx_rtc.c
- nrfx_rtc.c
- 0
- 0
-
7
50
@@ -830,8 +830,8 @@
0
0
0
- packages\nrfx-latest\drivers\src\nrfx_dppi.c
- nrfx_dppi.c
+ packages\nrfx-latest\drivers\src\nrfx_power.c
+ nrfx_power.c
0
0
@@ -842,8 +842,8 @@
0
0
0
- packages\nrfx-latest\drivers\src\nrfx_twis.c
- nrfx_twis.c
+ packages\nrfx-latest\drivers\src\nrfx_egu.c
+ nrfx_egu.c
0
0
@@ -854,8 +854,8 @@
0
0
0
- packages\nrfx-latest\drivers\src\nrfx_ipc.c
- nrfx_ipc.c
+ packages\nrfx-latest\drivers\src\nrfx_twim.c
+ nrfx_twim.c
0
0
@@ -866,8 +866,8 @@
0
0
0
- packages\nrfx-latest\drivers\src\nrfx_timer.c
- nrfx_timer.c
+ packages\nrfx-latest\drivers\src\nrfx_nvmc.c
+ nrfx_nvmc.c
0
0
@@ -878,8 +878,8 @@
0
0
0
- packages\nrfx-latest\drivers\src\nrfx_nvmc.c
- nrfx_nvmc.c
+ packages\nrfx-latest\drivers\src\nrfx_temp.c
+ nrfx_temp.c
0
0
@@ -902,8 +902,8 @@
0
0
0
- packages\nrfx-latest\drivers\src\nrfx_systick.c
- nrfx_systick.c
+ packages\nrfx-latest\drivers\src\nrfx_dppi.c
+ nrfx_dppi.c
0
0
@@ -914,143 +914,143 @@
0
0
0
- packages\nrfx-latest\drivers\src\nrfx_usbreg.c
- nrfx_usbreg.c
- 0
- 0
-
-
- 7
- 58
- 2
- 0
- 0
- 0
- packages\nrfx-latest\mdk\arm_startup_nrf52840.s
- arm_startup_nrf52840.s
- 0
- 0
-
-
- 7
- 59
- 1
- 0
- 0
- 0
- packages\nrfx-latest\drivers\src\nrfx_saadc.c
- nrfx_saadc.c
- 0
- 0
-
-
- 7
- 60
- 1
- 0
- 0
- 0
- packages\nrfx-latest\drivers\src\nrfx_wdt.c
- nrfx_wdt.c
- 0
- 0
-
-
- 7
- 61
- 1
- 0
- 0
- 0
- packages\nrfx-latest\drivers\src\nrfx_gpiote.c
- nrfx_gpiote.c
- 0
- 0
-
-
- 7
- 62
- 1
- 0
- 0
- 0
- packages\nrfx-latest\drivers\src\nrfx_spi.c
- nrfx_spi.c
- 0
- 0
-
-
- 7
- 63
- 1
- 0
- 0
- 0
- packages\nrfx-latest\drivers\src\nrfx_twi_twim.c
- nrfx_twi_twim.c
- 0
- 0
-
-
- 7
- 64
- 1
- 0
- 0
- 0
- packages\nrfx-latest\mdk\system_nrf52840.c
- system_nrf52840.c
- 0
- 0
-
-
- 7
- 65
- 1
- 0
- 0
- 0
- packages\nrfx-latest\drivers\src\nrfx_lpcomp.c
- nrfx_lpcomp.c
- 0
- 0
-
-
- 7
- 66
- 1
- 0
- 0
- 0
- packages\nrfx-latest\drivers\src\nrfx_qdec.c
- nrfx_qdec.c
- 0
- 0
-
-
- 7
- 67
- 1
- 0
- 0
- 0
- packages\nrfx-latest\drivers\src\nrfx_power.c
- nrfx_power.c
- 0
- 0
-
-
- 7
- 68
- 1
- 0
- 0
- 0
packages\nrfx-latest\drivers\src\nrfx_uart.c
nrfx_uart.c
0
0
+
+ 7
+ 58
+ 1
+ 0
+ 0
+ 0
+ packages\nrfx-latest\drivers\src\nrfx_gpiote.c
+ nrfx_gpiote.c
+ 0
+ 0
+
+
+ 7
+ 59
+ 1
+ 0
+ 0
+ 0
+ packages\nrfx-latest\drivers\src\nrfx_systick.c
+ nrfx_systick.c
+ 0
+ 0
+
+
+ 7
+ 60
+ 1
+ 0
+ 0
+ 0
+ packages\nrfx-latest\drivers\src\nrfx_ipc.c
+ nrfx_ipc.c
+ 0
+ 0
+
+
+ 7
+ 61
+ 1
+ 0
+ 0
+ 0
+ packages\nrfx-latest\drivers\src\nrfx_pwm.c
+ nrfx_pwm.c
+ 0
+ 0
+
+
+ 7
+ 62
+ 1
+ 0
+ 0
+ 0
+ packages\nrfx-latest\drivers\src\nrfx_twi.c
+ nrfx_twi.c
+ 0
+ 0
+
+
+ 7
+ 63
+ 2
+ 0
+ 0
+ 0
+ packages\nrfx-latest\mdk\arm_startup_nrf52840.s
+ arm_startup_nrf52840.s
+ 0
+ 0
+
+
+ 7
+ 64
+ 1
+ 0
+ 0
+ 0
+ packages\nrfx-latest\drivers\src\nrfx_rtc.c
+ nrfx_rtc.c
+ 0
+ 0
+
+
+ 7
+ 65
+ 1
+ 0
+ 0
+ 0
+ packages\nrfx-latest\drivers\src\nrfx_twis.c
+ nrfx_twis.c
+ 0
+ 0
+
+
+ 7
+ 66
+ 1
+ 0
+ 0
+ 0
+ packages\nrfx-latest\drivers\src\nrfx_nfct.c
+ nrfx_nfct.c
+ 0
+ 0
+
+
+ 7
+ 67
+ 1
+ 0
+ 0
+ 0
+ packages\nrfx-latest\drivers\src\nrfx_usbreg.c
+ nrfx_usbreg.c
+ 0
+ 0
+
+
+ 7
+ 68
+ 1
+ 0
+ 0
+ 0
+ packages\nrfx-latest\drivers\src\nrfx_rng.c
+ nrfx_rng.c
+ 0
+ 0
+
7
69
@@ -1058,8 +1058,8 @@
0
0
0
- packages\nrfx-latest\drivers\src\nrfx_i2s.c
- nrfx_i2s.c
+ packages\nrfx-latest\drivers\src\nrfx_wdt.c
+ nrfx_wdt.c
0
0
@@ -1070,6 +1070,90 @@
0
0
0
+ packages\nrfx-latest\drivers\src\nrfx_ppi.c
+ nrfx_ppi.c
+ 0
+ 0
+
+
+ 7
+ 71
+ 1
+ 0
+ 0
+ 0
+ packages\nrfx-latest\drivers\src\nrfx_saadc.c
+ nrfx_saadc.c
+ 0
+ 0
+
+
+ 7
+ 72
+ 1
+ 0
+ 0
+ 0
+ packages\nrfx-latest\drivers\src\nrfx_spi.c
+ nrfx_spi.c
+ 0
+ 0
+
+
+ 7
+ 73
+ 1
+ 0
+ 0
+ 0
+ packages\nrfx-latest\mdk\system_nrf52840.c
+ system_nrf52840.c
+ 0
+ 0
+
+
+ 7
+ 74
+ 1
+ 0
+ 0
+ 0
+ packages\nrfx-latest\drivers\src\nrfx_lpcomp.c
+ nrfx_lpcomp.c
+ 0
+ 0
+
+
+ 7
+ 75
+ 1
+ 0
+ 0
+ 0
+ packages\nrfx-latest\drivers\src\nrfx_twi_twim.c
+ nrfx_twi_twim.c
+ 0
+ 0
+
+
+ 7
+ 76
+ 1
+ 0
+ 0
+ 0
+ packages\nrfx-latest\drivers\src\nrfx_clock.c
+ nrfx_clock.c
+ 0
+ 0
+
+
+ 7
+ 77
+ 1
+ 0
+ 0
+ 0
packages\nrfx-latest\drivers\src\nrfx_spim.c
nrfx_spim.c
0
@@ -1077,13 +1161,49 @@
7
- 71
+ 78
1
0
0
0
- packages\nrfx-latest\drivers\src\nrfx_qspi.c
- nrfx_qspi.c
+ packages\nrfx-latest\drivers\src\nrfx_i2s.c
+ nrfx_i2s.c
+ 0
+ 0
+
+
+ 7
+ 79
+ 1
+ 0
+ 0
+ 0
+ packages\nrfx-latest\drivers\src\nrfx_uarte.c
+ nrfx_uarte.c
+ 0
+ 0
+
+
+ 7
+ 80
+ 1
+ 0
+ 0
+ 0
+ packages\nrfx-latest\drivers\src\nrfx_pdm.c
+ nrfx_pdm.c
+ 0
+ 0
+
+
+ 7
+ 81
+ 1
+ 0
+ 0
+ 0
+ packages\nrfx-latest\drivers\src\nrfx_timer.c
+ nrfx_timer.c
0
0
diff --git a/bsp/nrf5x/nrf52840/project.uvprojx b/bsp/nrf5x/nrf52840/project.uvprojx
index be44fa7a0c..7646c98bf2 100644
--- a/bsp/nrf5x/nrf52840/project.uvprojx
+++ b/bsp/nrf5x/nrf52840/project.uvprojx
@@ -394,9 +394,9 @@
CPU
- div0.c
+ backtrace.c
1
- ..\..\..\libcpu\arm\common\div0.c
+ ..\..\..\libcpu\arm\common\backtrace.c
showmem.c
@@ -404,9 +404,9 @@
..\..\..\libcpu\arm\common\showmem.c
- backtrace.c
+ div0.c
1
- ..\..\..\libcpu\arm\common\backtrace.c
+ ..\..\..\libcpu\arm\common\div0.c
context_rvds.S
@@ -433,21 +433,16 @@
1
..\..\..\components\drivers\serial\serial.c
-
- workqueue.c
- 1
- ..\..\..\components\drivers\src\workqueue.c
-
-
- ringbuffer.c
- 1
- ..\..\..\components\drivers\src\ringbuffer.c
-
waitqueue.c
1
..\..\..\components\drivers\src\waitqueue.c
+
+ workqueue.c
+ 1
+ ..\..\..\components\drivers\src\workqueue.c
+
completion.c
1
@@ -458,6 +453,11 @@
1
..\..\..\components\drivers\src\dataqueue.c
+
+ ringbuffer.c
+ 1
+ ..\..\..\components\drivers\src\ringbuffer.c
+
ringblk_buf.c
1
@@ -494,9 +494,19 @@
finsh
- shell.c
+ finsh_node.c
1
- ..\..\..\components\finsh\shell.c
+ ..\..\..\components\finsh\finsh_node.c
+
+
+ finsh_parser.c
+ 1
+ ..\..\..\components\finsh\finsh_parser.c
+
+
+ cmd.c
+ 1
+ ..\..\..\components\finsh\cmd.c
msh.c
@@ -504,45 +514,55 @@
..\..\..\components\finsh\msh.c
- cmd.c
+ finsh_vm.c
1
- ..\..\..\components\finsh\cmd.c
+ ..\..\..\components\finsh\finsh_vm.c
+
+
+ shell.c
+ 1
+ ..\..\..\components\finsh\shell.c
+
+
+ finsh_var.c
+ 1
+ ..\..\..\components\finsh\finsh_var.c
+
+
+ finsh_compiler.c
+ 1
+ ..\..\..\components\finsh\finsh_compiler.c
+
+
+ finsh_heap.c
+ 1
+ ..\..\..\components\finsh\finsh_heap.c
+
+
+ finsh_ops.c
+ 1
+ ..\..\..\components\finsh\finsh_ops.c
+
+
+ finsh_error.c
+ 1
+ ..\..\..\components\finsh\finsh_error.c
+
+
+ finsh_token.c
+ 1
+ ..\..\..\components\finsh\finsh_token.c
+
+
+ finsh_init.c
+ 1
+ ..\..\..\components\finsh\finsh_init.c
Kernel
-
- thread.c
- 1
- ..\..\..\src\thread.c
-
-
- ipc.c
- 1
- ..\..\..\src\ipc.c
-
-
- device.c
- 1
- ..\..\..\src\device.c
-
-
- object.c
- 1
- ..\..\..\src\object.c
-
-
- irq.c
- 1
- ..\..\..\src\irq.c
-
-
- scheduler.c
- 1
- ..\..\..\src\scheduler.c
-
kservice.c
1
@@ -553,6 +573,36 @@
1
..\..\..\src\clock.c
+
+ timer.c
+ 1
+ ..\..\..\src\timer.c
+
+
+ scheduler.c
+ 1
+ ..\..\..\src\scheduler.c
+
+
+ device.c
+ 1
+ ..\..\..\src\device.c
+
+
+ ipc.c
+ 1
+ ..\..\..\src\ipc.c
+
+
+ irq.c
+ 1
+ ..\..\..\src\irq.c
+
+
+ object.c
+ 1
+ ..\..\..\src\object.c
+
mempool.c
1
@@ -564,9 +614,9 @@
..\..\..\src\components.c
- mem.c
+ thread.c
1
- ..\..\..\src\mem.c
+ ..\..\..\src\thread.c
idle.c
@@ -574,9 +624,9 @@
..\..\..\src\idle.c
- timer.c
+ mem.c
1
- ..\..\..\src\timer.c
+ ..\..\..\src\mem.c
@@ -584,54 +634,24 @@
nrfx
- nrfx_ppi.c
+ nrfx_qspi.c
1
- packages\nrfx-latest\drivers\src\nrfx_ppi.c
-
-
- nrfx_twim.c
- 1
- packages\nrfx-latest\drivers\src\nrfx_twim.c
-
-
- nrfx_temp.c
- 1
- packages\nrfx-latest\drivers\src\nrfx_temp.c
-
-
- nrfx_rng.c
- 1
- packages\nrfx-latest\drivers\src\nrfx_rng.c
-
-
- nrfx_twi.c
- 1
- packages\nrfx-latest\drivers\src\nrfx_twi.c
+ packages\nrfx-latest\drivers\src\nrfx_qspi.c
nrfx_spis.c
1
packages\nrfx-latest\drivers\src\nrfx_spis.c
-
- nrfx_nfct.c
- 1
- packages\nrfx-latest\drivers\src\nrfx_nfct.c
-
nrfx_usbd.c
1
packages\nrfx-latest\drivers\src\nrfx_usbd.c
- nrfx_pwm.c
+ nrfx_qdec.c
1
- packages\nrfx-latest\drivers\src\nrfx_pwm.c
-
-
- nrfx_egu.c
- 1
- packages\nrfx-latest\drivers\src\nrfx_egu.c
+ packages\nrfx-latest\drivers\src\nrfx_qdec.c
nrfx_adc.c
@@ -639,95 +659,120 @@
packages\nrfx-latest\drivers\src\nrfx_adc.c
- nrfx_uarte.c
+ nrfx_power.c
1
- packages\nrfx-latest\drivers\src\nrfx_uarte.c
+ packages\nrfx-latest\drivers\src\nrfx_power.c
- nrfx_clock.c
+ nrfx_egu.c
1
- packages\nrfx-latest\drivers\src\nrfx_clock.c
+ packages\nrfx-latest\drivers\src\nrfx_egu.c
- nrfx_pdm.c
+ nrfx_twim.c
1
- packages\nrfx-latest\drivers\src\nrfx_pdm.c
-
-
- nrfx_rtc.c
- 1
- packages\nrfx-latest\drivers\src\nrfx_rtc.c
-
-
- nrfx_dppi.c
- 1
- packages\nrfx-latest\drivers\src\nrfx_dppi.c
-
-
- nrfx_twis.c
- 1
- packages\nrfx-latest\drivers\src\nrfx_twis.c
-
-
- nrfx_ipc.c
- 1
- packages\nrfx-latest\drivers\src\nrfx_ipc.c
-
-
- nrfx_timer.c
- 1
- packages\nrfx-latest\drivers\src\nrfx_timer.c
+ packages\nrfx-latest\drivers\src\nrfx_twim.c
nrfx_nvmc.c
1
packages\nrfx-latest\drivers\src\nrfx_nvmc.c
+
+ nrfx_temp.c
+ 1
+ packages\nrfx-latest\drivers\src\nrfx_temp.c
+
nrfx_comp.c
1
packages\nrfx-latest\drivers\src\nrfx_comp.c
- nrfx_systick.c
+ nrfx_dppi.c
1
- packages\nrfx-latest\drivers\src\nrfx_systick.c
+ packages\nrfx-latest\drivers\src\nrfx_dppi.c
- nrfx_usbreg.c
+ nrfx_uart.c
1
- packages\nrfx-latest\drivers\src\nrfx_usbreg.c
-
-
- arm_startup_nrf52840.s
- 2
- packages\nrfx-latest\mdk\arm_startup_nrf52840.s
-
-
- nrfx_saadc.c
- 1
- packages\nrfx-latest\drivers\src\nrfx_saadc.c
-
-
- nrfx_wdt.c
- 1
- packages\nrfx-latest\drivers\src\nrfx_wdt.c
+ packages\nrfx-latest\drivers\src\nrfx_uart.c
nrfx_gpiote.c
1
packages\nrfx-latest\drivers\src\nrfx_gpiote.c
+
+ nrfx_systick.c
+ 1
+ packages\nrfx-latest\drivers\src\nrfx_systick.c
+
+
+ nrfx_ipc.c
+ 1
+ packages\nrfx-latest\drivers\src\nrfx_ipc.c
+
+
+ nrfx_pwm.c
+ 1
+ packages\nrfx-latest\drivers\src\nrfx_pwm.c
+
+
+ nrfx_twi.c
+ 1
+ packages\nrfx-latest\drivers\src\nrfx_twi.c
+
+
+ arm_startup_nrf52840.s
+ 2
+ packages\nrfx-latest\mdk\arm_startup_nrf52840.s
+
+
+ nrfx_rtc.c
+ 1
+ packages\nrfx-latest\drivers\src\nrfx_rtc.c
+
+
+ nrfx_twis.c
+ 1
+ packages\nrfx-latest\drivers\src\nrfx_twis.c
+
+
+ nrfx_nfct.c
+ 1
+ packages\nrfx-latest\drivers\src\nrfx_nfct.c
+
+
+ nrfx_usbreg.c
+ 1
+ packages\nrfx-latest\drivers\src\nrfx_usbreg.c
+
+
+ nrfx_rng.c
+ 1
+ packages\nrfx-latest\drivers\src\nrfx_rng.c
+
+
+ nrfx_wdt.c
+ 1
+ packages\nrfx-latest\drivers\src\nrfx_wdt.c
+
+
+ nrfx_ppi.c
+ 1
+ packages\nrfx-latest\drivers\src\nrfx_ppi.c
+
+
+ nrfx_saadc.c
+ 1
+ packages\nrfx-latest\drivers\src\nrfx_saadc.c
+
nrfx_spi.c
1
packages\nrfx-latest\drivers\src\nrfx_spi.c
-
- nrfx_twi_twim.c
- 1
- packages\nrfx-latest\drivers\src\nrfx_twi_twim.c
-
system_nrf52840.c
1
@@ -739,24 +784,14 @@
packages\nrfx-latest\drivers\src\nrfx_lpcomp.c
- nrfx_qdec.c
+ nrfx_twi_twim.c
1
- packages\nrfx-latest\drivers\src\nrfx_qdec.c
+ packages\nrfx-latest\drivers\src\nrfx_twi_twim.c
- nrfx_power.c
+ nrfx_clock.c
1
- packages\nrfx-latest\drivers\src\nrfx_power.c
-
-
- nrfx_uart.c
- 1
- packages\nrfx-latest\drivers\src\nrfx_uart.c
-
-
- nrfx_i2s.c
- 1
- packages\nrfx-latest\drivers\src\nrfx_i2s.c
+ packages\nrfx-latest\drivers\src\nrfx_clock.c
nrfx_spim.c
@@ -764,9 +799,24 @@
packages\nrfx-latest\drivers\src\nrfx_spim.c
- nrfx_qspi.c
+ nrfx_i2s.c
1
- packages\nrfx-latest\drivers\src\nrfx_qspi.c
+ packages\nrfx-latest\drivers\src\nrfx_i2s.c
+
+
+ nrfx_uarte.c
+ 1
+ packages\nrfx-latest\drivers\src\nrfx_uarte.c
+
+
+ nrfx_pdm.c
+ 1
+ packages\nrfx-latest\drivers\src\nrfx_pdm.c
+
+
+ nrfx_timer.c
+ 1
+ packages\nrfx-latest\drivers\src\nrfx_timer.c
diff --git a/bsp/nrf5x/nrf52840/rtconfig.h b/bsp/nrf5x/nrf52840/rtconfig.h
index 7b387a4444..9d269d9391 100644
--- a/bsp/nrf5x/nrf52840/rtconfig.h
+++ b/bsp/nrf5x/nrf52840/rtconfig.h
@@ -11,7 +11,6 @@
#define RT_THREAD_PRIORITY_32
#define RT_THREAD_PRIORITY_MAX 32
#define RT_TICK_PER_SECOND 100
-#define RT_USING_OVERFLOW_CHECK
#define RT_USING_HOOK
#define RT_USING_IDLE_HOOK
#define RT_IDLE_HOOK_LIST_SIZE 4
@@ -22,15 +21,12 @@
/* kservice optimization */
-#define RT_DEBUG
/* Inter-Thread communication */
#define RT_USING_SEMAPHORE
#define RT_USING_MUTEX
#define RT_USING_EVENT
-#define RT_USING_MAILBOX
-#define RT_USING_MESSAGEQUEUE
/* Memory Management */
@@ -69,7 +65,6 @@
#define FINSH_CMD_SIZE 80
#define FINSH_USING_MSH
#define FINSH_USING_MSH_DEFAULT
-#define FINSH_USING_MSH_ONLY
#define FINSH_ARG_MAX 10
/* Device virtual file system */
@@ -171,27 +166,32 @@
#define SOC_NORDIC
#define BSP_BOARD_PCA_10056
+/* Onboard Peripheral Drivers */
+
+#define BSP_USING_JLINK_TO_USART
+
/* On-chip Peripheral Drivers */
#define BSP_USING_GPIO
-#define NRFX_GPIOTE_ENABLED 1
#define BSP_USING_UART
+#define NRFX_USING_UART
#define BSP_USING_UART0
#define BSP_UART0_RX_PIN 8
#define BSP_UART0_TX_PIN 6
-/* On-chip flash config */
+/* MCU flash config */
#define MCU_FLASH_START_ADDRESS 0x00000000
#define MCU_FLASH_SIZE_KB 1024
#define MCU_SRAM_START_ADDRESS 0x20000000
#define MCU_SRAM_SIZE_KB 256
#define MCU_FLASH_PAGE_SIZE 0x1000
+#define BLE_STACK_USING_NULL
#define NRFX_CLOCK_ENABLED 1
#define NRFX_CLOCK_DEFAULT_CONFIG_IRQ_PRIORITY 7
#define NRFX_CLOCK_CONFIG_LF_SRC 1
-#define NRFX_USING_UART
#define NRFX_UART_ENABLED 1
#define NRFX_UART0_ENABLED 1
+#define NRFX_GPIOTE_ENABLED 1
#endif