Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

增加配置Keil/IAR路径的选项 #178

Merged
merged 1 commit into from
Sep 17, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions cmds/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ config SYS_AUTO_UPDATE_PKGS
default y

config SYS_CREATE_MDK_IAR_PROJECT
bool "Auto create a mdk/iar project"
bool "Auto create a Keil-MDK or IAR project"
default n

if SYS_CREATE_MDK_IAR_PROJECT
Expand All @@ -24,7 +24,17 @@ if SYS_CREATE_MDK_IAR_PROJECT
config SYS_CREATE_MDK4
bool "MDK4"
endchoice


config SYS_CREATE_MDK_EXEC_PATH
string "MDK Path"
depends on SYS_CREATE_MDK5 || SYS_CREATE_MDK4
default "C:/Keil_v5"

config SYS_CREATE_IAR_EXEC_PATH
string "IAR Path"
depends on SYS_CREATE_IAR
default "C:/Program Files (x86)/IAR Systems/Embedded Workbench 8.3"

endif

config SYS_PKGS_USING_STATISTICS
Expand Down