-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
risc-v/qemu-rv: Add Build Config for leds64_zig
This PR adds a new Build Config `rv-virt:leds64_zig` that builds the Zig App `leds_zig` for QEMU RISC-V 64-bit. ref.: apache/nuttx-apps#2534
- Loading branch information
Showing
4 changed files
with
89 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
================================= | ||
``leds_zig`` Toggle LEDs in Zig | ||
================================= | ||
|
||
This is a simple test in Zig of the board LED driver at | ||
``nuttx/drivers/leds/userled_*.c``. |
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
76 changes: 76 additions & 0 deletions
76
boards/risc-v/qemu-rv/rv-virt/configs/leds64_zig/defconfig
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,76 @@ | ||
# | ||
# This file is autogenerated: PLEASE DO NOT EDIT IT. | ||
# | ||
# You can use "make menuconfig" to make any modifications to the installed .config file. | ||
# You can then do "make savedefconfig" to generate a new defconfig file that includes your | ||
# modifications. | ||
# | ||
# CONFIG_DISABLE_OS_API is not set | ||
# CONFIG_NSH_DISABLE_LOSMART is not set | ||
CONFIG_16550_ADDRWIDTH=0 | ||
CONFIG_16550_UART0=y | ||
CONFIG_16550_UART0_BASE=0x10000000 | ||
CONFIG_16550_UART0_CLOCK=3686400 | ||
CONFIG_16550_UART0_IRQ=37 | ||
CONFIG_16550_UART0_SERIAL_CONSOLE=y | ||
CONFIG_16550_UART=y | ||
CONFIG_ARCH="risc-v" | ||
CONFIG_ARCH_BOARD="rv-virt" | ||
CONFIG_ARCH_BOARD_QEMU_RV_VIRT=y | ||
CONFIG_ARCH_CHIP="qemu-rv" | ||
CONFIG_ARCH_CHIP_QEMU_RV64=y | ||
CONFIG_ARCH_CHIP_QEMU_RV=y | ||
CONFIG_ARCH_CHIP_QEMU_RV_ISA_A=y | ||
CONFIG_ARCH_CHIP_QEMU_RV_ISA_C=y | ||
CONFIG_ARCH_CHIP_QEMU_RV_ISA_M=y | ||
CONFIG_ARCH_INTERRUPTSTACK=2048 | ||
CONFIG_ARCH_RISCV=y | ||
CONFIG_ARCH_STACKDUMP=y | ||
CONFIG_BCH=y | ||
CONFIG_BOARDCTL_POWEROFF=y | ||
CONFIG_BOARD_LATE_INITIALIZE=y | ||
CONFIG_BOARD_LOOPSPERMSEC=6366 | ||
CONFIG_BUILTIN=y | ||
CONFIG_DEBUG_FEATURES=y | ||
CONFIG_DEBUG_FULLOPT=y | ||
CONFIG_DEBUG_SYMBOLS=y | ||
CONFIG_DEVICE_TREE=y | ||
CONFIG_DEV_ZERO=y | ||
CONFIG_ELF=y | ||
CONFIG_EXAMPLES_HELLO=y | ||
CONFIG_EXAMPLES_LEDS=y | ||
CONFIG_EXAMPLES_LEDS_ZIG=y | ||
CONFIG_FS_HOSTFS=y | ||
CONFIG_FS_PROCFS=y | ||
CONFIG_IDLETHREAD_STACKSIZE=2048 | ||
CONFIG_INIT_ENTRYPOINT="nsh_main" | ||
CONFIG_INIT_STACKSIZE=3072 | ||
CONFIG_LIBC_ENVPATH=y | ||
CONFIG_LIBC_EXECFUNCS=y | ||
CONFIG_LIBC_PERROR_STDOUT=y | ||
CONFIG_LIBC_STRERROR=y | ||
CONFIG_LIBM=y | ||
CONFIG_NFILE_DESCRIPTORS_PER_BLOCK=6 | ||
CONFIG_NSH_ARCHINIT=y | ||
CONFIG_NSH_BUILTIN_APPS=y | ||
CONFIG_NSH_FILEIOSIZE=512 | ||
CONFIG_NSH_READLINE=y | ||
CONFIG_PATH_INITIAL="/system/bin" | ||
CONFIG_RAM_SIZE=33554432 | ||
CONFIG_RAM_START=0x80000000 | ||
CONFIG_READLINE_CMD_HISTORY=y | ||
CONFIG_RISCV_SEMIHOSTING_HOSTFS=y | ||
CONFIG_RR_INTERVAL=200 | ||
CONFIG_SCHED_WAITPID=y | ||
CONFIG_SERIAL_UART_ARCH_MMIO=y | ||
CONFIG_STACK_COLORATION=y | ||
CONFIG_START_MONTH=12 | ||
CONFIG_START_YEAR=2021 | ||
CONFIG_SYMTAB_ORDEREDBYNAME=y | ||
CONFIG_SYSTEM_NSH=y | ||
CONFIG_SYSTEM_NSH_STACKSIZE=3072 | ||
CONFIG_TESTING_GETPRIME=y | ||
CONFIG_TESTING_OSTEST=y | ||
CONFIG_USEC_PER_TICK=1000 | ||
CONFIG_USERLED=y | ||
CONFIG_USERLED_LOWER=y |
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