├── CMakeLists.txt ├── LICENSE ├── README.md └── main ├── CMakeLists.txt ├── Kconfig.projbuild ├── main.c ├── tcp_server.c ├── tcp_server.h ├── usbip.c ├── usbip.h ├── wifi.c └── wifi.h /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar-fabulab/esp32_usbip/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar-fabulab/esp32_usbip/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar-fabulab/esp32_usbip/HEAD/README.md -------------------------------------------------------------------------------- /main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar-fabulab/esp32_usbip/HEAD/main/CMakeLists.txt -------------------------------------------------------------------------------- /main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar-fabulab/esp32_usbip/HEAD/main/Kconfig.projbuild -------------------------------------------------------------------------------- /main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar-fabulab/esp32_usbip/HEAD/main/main.c -------------------------------------------------------------------------------- /main/tcp_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar-fabulab/esp32_usbip/HEAD/main/tcp_server.c -------------------------------------------------------------------------------- /main/tcp_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar-fabulab/esp32_usbip/HEAD/main/tcp_server.h -------------------------------------------------------------------------------- /main/usbip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar-fabulab/esp32_usbip/HEAD/main/usbip.c -------------------------------------------------------------------------------- /main/usbip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar-fabulab/esp32_usbip/HEAD/main/usbip.h -------------------------------------------------------------------------------- /main/wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ar-fabulab/esp32_usbip/HEAD/main/wifi.c -------------------------------------------------------------------------------- /main/wifi.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void wifi_init_sta(); --------------------------------------------------------------------------------