mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-20 10:43:32 +08:00
fc3c29df70
# Conflicts: # bsp/ra6m4-cpk/.settings/standalone.prefs # bsp/ra6m4-cpk/SConscript # bsp/renesas/ra6m4-cpk/ra_gen/vector_data.h # bsp/renesas/ra6m4-iot/buildinfo.gpdsc # bsp/renesas/ra6m4-iot/project.uvoptx # bsp/renesas/ra6m4-iot/project.uvprojx # bsp/renesas/ra6m4-iot/ra/fsp/inc/api/r_external_irq_api.h # bsp/renesas/ra6m4-iot/ra_gen/SConscript
38 lines
706 B
Plaintext
38 lines
706 B
Plaintext
mainmenu "RT-Thread Configuration"
|
|
|
|
config BSP_DIR
|
|
string
|
|
option env="BSP_ROOT"
|
|
default "."
|
|
|
|
config RTT_DIR
|
|
string
|
|
option env="RTT_ROOT"
|
|
default "../../.."
|
|
|
|
# you can change the RTT_ROOT default "../.." to your rtthread_root,
|
|
# example : default "F:/git_repositories/rt-thread"
|
|
|
|
config PKGS_DIR
|
|
string
|
|
option env="PKGS_ROOT"
|
|
default "packages"
|
|
|
|
config ENV_DIR
|
|
string
|
|
option env="ENV_ROOT"
|
|
default "/"
|
|
|
|
source "$RTT_DIR/Kconfig"
|
|
source "$PKGS_DIR/Kconfig"
|
|
source "$BSP_DIR/drivers/Kconfig"
|
|
|
|
config SOC_FAMILY_RENESAS
|
|
bool
|
|
default y
|
|
|
|
config SOC_SERIES_R7FA6M4AF
|
|
bool
|
|
select ARCH_ARM_CORTEX_M4
|
|
select SOC_FAMILY_RENESAS
|
|
default y |