2022-03-25 23:07:18 +08:00
|
|
|
menuconfig RT_USING_VBUS
|
|
|
|
bool "VBus: virtual software bus"
|
2017-11-03 21:08:00 +08:00
|
|
|
default n
|
|
|
|
|
|
|
|
if RT_USING_VBUS
|
|
|
|
config RT_USING_VBUS_RFS
|
2022-03-25 23:07:18 +08:00
|
|
|
bool "Enable Remote File System on VBus"
|
2017-11-03 21:08:00 +08:00
|
|
|
default n
|
|
|
|
help
|
|
|
|
When enable remote file system, the application can visit the remote file system
|
2022-03-25 23:07:18 +08:00
|
|
|
through VBus with POSIX file I/O.
|
2018-07-18 11:05:39 +08:00
|
|
|
|
2017-11-03 21:08:00 +08:00
|
|
|
config RT_USING_VBUS_RSHELL
|
2022-03-25 23:07:18 +08:00
|
|
|
bool "Enable Remote Shell on VBus"
|
2017-11-03 21:08:00 +08:00
|
|
|
default n
|
|
|
|
help
|
|
|
|
When enable remote shell, the finsh/msh of RT-Thread can be operated from another
|
|
|
|
Operating System.
|
2018-08-27 15:37:08 +08:00
|
|
|
|
|
|
|
config RT_VBUS_USING_TESTS
|
2023-12-25 20:00:00 +08:00
|
|
|
bool "Enable tests on VBus"
|
2018-08-27 15:37:08 +08:00
|
|
|
default n
|
|
|
|
|
|
|
|
config _RT_VBUS_RING_BASE
|
2022-03-25 23:07:18 +08:00
|
|
|
hex "VBus address"
|
2018-08-27 15:37:08 +08:00
|
|
|
help
|
2022-03-25 23:07:18 +08:00
|
|
|
VBus ring buffer physical address.
|
2018-08-27 15:37:08 +08:00
|
|
|
|
|
|
|
config _RT_VBUS_RING_SZ
|
2022-03-25 23:07:18 +08:00
|
|
|
int "VBus ring size"
|
2018-08-27 15:37:08 +08:00
|
|
|
help
|
2022-03-25 23:07:18 +08:00
|
|
|
VBus size of the ring buffer.
|
2018-08-27 15:37:08 +08:00
|
|
|
|
|
|
|
config RT_VBUS_GUEST_VIRQ
|
|
|
|
int "RT_VBUS_GUEST_VIRQ"
|
|
|
|
help
|
|
|
|
The interrupt number used to notify the client on a particular system.
|
|
|
|
|
|
|
|
config RT_VBUS_HOST_VIRQ
|
|
|
|
int "RT_VBUS_HOST_VIRQ"
|
|
|
|
help
|
|
|
|
The interrupt be triggered on a particular system when the client notify the host.
|
|
|
|
|
|
|
|
config RT_VBUS_SHELL_DEV_NAME
|
|
|
|
string "RT_VBUS_SHELL_DEV_NAME"
|
|
|
|
default "vbser0"
|
|
|
|
help
|
|
|
|
The name of the UBUS shell device.
|
|
|
|
|
|
|
|
config RT_VBUS_RFS_DEV_NAME
|
|
|
|
string "RT_VBUS_RFS_DEV_NAME"
|
|
|
|
default "rfs"
|
|
|
|
help
|
|
|
|
The name of the UBUS rfs device.
|
|
|
|
|
2017-11-03 21:08:00 +08:00
|
|
|
endif
|