-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Added RISC-V sparkfun red board
Signed-off-by: Taras Drozdovskyi <[email protected]>
- Loading branch information
1 parent
e687493
commit f25e91b
Showing
178 changed files
with
31,249 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# | ||
# For a description of the syntax of this configuration file, | ||
# see the file kconfig-language.txt in the docs folder of mTower repository. | ||
# | ||
|
||
choice | ||
prompt "MCU Family" | ||
default FE310 | ||
|
||
config ARCH_FAMILY_FE310 | ||
bool "FE310" | ||
---help--- | ||
The FE310 architecture | ||
|
||
config ARCH_FAMILY_BL808 | ||
bool "BL808" | ||
---help--- | ||
The BL808 architecture | ||
|
||
endchoice | ||
|
||
config ARCH_FAMILY | ||
string | ||
default "fe310" if ARCH_FAMILY_FE310 | ||
default "bl808" if ARCH_FAMILY_BL808 | ||
|
||
if ARCH_FAMILY_FE310 | ||
comment "FE310 Configuration Options" | ||
source arch/riscv32/fe310/Kconfig | ||
endif | ||
|
||
if ARCH_FAMILY_BL808 | ||
comment "BL808 Configuration Options" | ||
source arch/riscv32/bl808/Kconfig | ||
endif | ||
|
Oops, something went wrong.