Kconfig 1.5 KB
Newer Older
1 2
menuconfig RT_USING_VBUS
    bool "VBus: virtual software bus"
B
bernard 已提交
3 4 5 6
    default n

if RT_USING_VBUS
    config RT_USING_VBUS_RFS
7
        bool "Enable Remote File System on VBus"
B
bernard 已提交
8 9 10
        default n
        help
            When enable remote file system, the application can visit the remote file system
11
            through VBus with POSIX file I/O.
L
liang yongxiang 已提交
12

B
bernard 已提交
13
    config RT_USING_VBUS_RSHELL
14
        bool "Enable Remote Shell on VBus"
B
bernard 已提交
15 16 17 18
        default n
        help
            When enable remote shell, the finsh/msh of RT-Thread can be operated from another
            Operating System.
19 20

    config RT_VBUS_USING_TESTS
21
        bool "Enable tests on VBus "
22 23 24
        default n

    config _RT_VBUS_RING_BASE
25
        hex "VBus address"
26
        help
27
            VBus ring buffer physical address.
28 29

    config _RT_VBUS_RING_SZ
30
        int "VBus ring size"
31
        help
32
            VBus size of the ring buffer.
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57

    config RT_VBUS_GUEST_VIRQ
        int "RT_VBUS_GUEST_VIRQ"
        help
            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.

B
bernard 已提交
58
endif