1
0

Kconfig 610 B

1234567891011121314151617181920212223
  1. menu "VBUS(Virtual Software BUS)"
  2. config RT_USING_VBUS
  3. bool "Enable VBUS"
  4. default n
  5. if RT_USING_VBUS
  6. config RT_USING_VBUS_RFS
  7. bool "Enable Remote File System on VBUS"
  8. default n
  9. help
  10. When enable remote file system, the application can visit the remote file system
  11. through VBUS with POSIX file I/O.
  12. config RT_USING_VBUS_RSHELL
  13. bool "Enable Remote Shell on VBUS"
  14. default n
  15. help
  16. When enable remote shell, the finsh/msh of RT-Thread can be operated from another
  17. Operating System.
  18. endif
  19. endmenu