27 Commits

Author SHA1 Message Date
cecio
8369117d73 updated README 2025-05-31 22:00:14 +02:00
cecio
13422f4c8c bump to release 0.21.1 2025-05-31 21:51:57 +02:00
cecio
c1618bc201 bump to release 0.21.0 2025-02-02 16:27:37 +01:00
cecio
d756e20eb4 new HID count and freq adjustment 2025-02-02 16:25:26 +01:00
cecio
1387103199 adjusted versions and freq 2025-02-02 16:24:30 +01:00
cecio
f4e9ed918b updates 2024-12-22 22:34:12 +01:00
cecio
c551015cd7 added comment to PIWATCH 2024-12-22 22:26:48 +01:00
cecio
08e047811a bump to release 0.20.0 2024-12-22 22:13:53 +01:00
cecio
113158f9ad Update README.md 2024-11-27 21:55:22 +01:00
cecio
251db8f30d bump to release 0.19.1 2024-10-27 22:07:03 +01:00
cecio
384684bdf4 bump to release 0.19.0 2024-09-03 13:45:11 +02:00
LiPolymer
35f4a00326 Fix Document Mistake(#50) (#51)
* Add Notification for R7&R8 of USBPipe

* Document improvements
2024-08-04 12:53:44 +02:00
cecio
59815ce63d Update README.md 2024-07-19 00:27:25 +02:00
cecio
7aee69d8e1 Update README.md 2024-07-18 21:38:13 +02:00
cecio
64f44c1a1c update version 2024-07-07 12:31:05 +02:00
cecio
7cfedce646 bump to release 0.18.2 2024-07-07 12:23:07 +02:00
cecio
f6de47e149 bump to release 0.18.1 2024-05-19 22:23:59 +02:00
cecio
4d730aecdb Update README.md 2024-05-05 22:25:51 +02:00
cecio
44e98ad924 Update README.md 2024-05-05 22:18:23 +02:00
cecio
7d218c974d commented PIWATCH define for default compilation 2024-05-05 11:54:09 +02:00
cecio
f93f2b8fcb bump to release 0.18.0 2024-05-05 11:47:41 +02:00
cecio
5ae2c31403 Update README.md 2024-04-24 01:20:34 +02:00
cecio
f96689ad6b Update README.md 2024-04-20 00:19:07 +02:00
cecio
896a9b8e26 added enclosure for 64 screen 2024-04-20 00:12:14 +02:00
cecio
c9d6a29ae9 Update README.md 2024-04-18 22:15:05 +02:00
cecio
4b87082395 Update README.md 2024-04-18 22:12:45 +02:00
LiPolymer
977296e820 Add USBpipe PCB (#33)
* Add smart_usb_pipe Gerber file

* Update PCB files and BOM

* Update README.md

* Fix README.md

* Update README.md

* Update README.md

* Translate BOM into English and add ods formart

* Replace PDF with PNG and SVG
2024-04-14 11:03:00 +02:00
25 changed files with 4949 additions and 44 deletions

View File

@@ -1,9 +1,9 @@
#
# To Build:
# docker build -t usbvalve/arduino-cli .
# docker build -t usbvalve-pico1/arduino-cli -f Dockerfile.pico1 .
#
# To Run:
# docker run --rm --name usbvalve -v $PWD:/mnt usbvalve/arduino-cli /mnt/USBvalve
# docker run --rm --name usbvalve -v $PWD:/mnt usbvalve-pico1/arduino-cli /mnt/USBvalve
#
FROM ubuntu:22.04
@@ -23,18 +23,17 @@ RUN cd /app \
&& ./install.sh \
&& export PATH=$PATH:/app/arduino-cli/bin \
&& arduino-cli --additional-urls https://github.com/earlephilhower/arduino-pico/releases/download/global/package_rp2040_index.json core search 2040 \
&& arduino-cli --additional-urls https://github.com/earlephilhower/arduino-pico/releases/download/global/package_rp2040_index.json core install rp2040:rp2040 \
&& arduino-cli lib install "Adafruit TinyUSB Library" \
&& arduino-cli lib install "ssd1306" \
&& arduino-cli lib install "Pico PIO USB" \
&& arduino-cli lib install "XxHash_arduino" \
&& arduino-cli lib install "GFX Library for Arduino" \
&& arduino-cli lib install "SSD1306Ascii"
&& arduino-cli --additional-urls https://github.com/earlephilhower/arduino-pico/releases/download/global/package_rp2040_index.json core install rp2040:rp2040@4.5.4 \
&& arduino-cli lib install "Adafruit TinyUSB Library@3.6.0" \
&& arduino-cli lib install "Adafruit SSD1306@2.5.14" \
&& arduino-cli lib install "Pico PIO USB@0.7.2" \
&& arduino-cli lib install "XxHash_arduino@2.1.0" \
&& arduino-cli lib install "GFX Library for Arduino@1.6.0"
# Compilation setup
RUN echo "#!/bin/bash" > /app/entrypoint.sh \
&& echo "export PATH=\$PATH:/app/arduino-cli/bin" >> /app/entrypoint.sh \
&& echo "arduino-cli compile --fqbn rp2040:rp2040:rpipico --board-options \"usbstack=tinyusb\" --board-options \"freq=120\" --output-dir \"/mnt/USBvalve_out\" \"\$1\"" >> /app/entrypoint.sh \
&& echo "arduino-cli compile --fqbn rp2040:rp2040:rpipico --build-property \"build.extra_flags=-DCFG_TUD_CDC=1\" --board-options \"usbstack=tinyusb\" --board-options \"freq=240\" --output-dir \"/mnt/USBvalve_out\" \"\$1\"" >> /app/entrypoint.sh \
&& chmod +x /app/entrypoint.sh
ENTRYPOINT ["/app/entrypoint.sh"]

39
Dockerfile.pico2 Normal file
View File

@@ -0,0 +1,39 @@
#
# To Build:
# docker build -t usbvalve-pico2/arduino-cli -f Dockerfile.pico2 .
#
# To Run:
# docker run --rm --name usbvalve -v $PWD:/mnt usbvalve-pico2/arduino-cli /mnt/USBvalve
#
FROM ubuntu:22.04
WORKDIR /app
# OS setup
RUN apt-get update -y \
&& apt-get install -y git wget python3 \
&& apt-get autoremove -y \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
# arduino-cli setup
RUN cd /app \
&& git clone --recursive https://github.com/arduino/arduino-cli.git \
&& cd arduino-cli \
&& ./install.sh \
&& export PATH=$PATH:/app/arduino-cli/bin \
&& arduino-cli --additional-urls https://github.com/earlephilhower/arduino-pico/releases/download/global/package_rp2040_index.json core search 2040 \
&& arduino-cli --additional-urls https://github.com/earlephilhower/arduino-pico/releases/download/global/package_rp2040_index.json core install rp2040:rp2040@4.5.4 \
&& arduino-cli lib install "Adafruit TinyUSB Library@3.6.0" \
&& arduino-cli lib install "Adafruit SSD1306@2.5.14" \
&& arduino-cli lib install "Pico PIO USB@0.7.2" \
&& arduino-cli lib install "XxHash_arduino@2.1.0" \
&& arduino-cli lib install "GFX Library for Arduino@1.6.0"
# Compilation setup
RUN echo "#!/bin/bash" > /app/entrypoint.sh \
&& echo "export PATH=\$PATH:/app/arduino-cli/bin" >> /app/entrypoint.sh \
&& echo "arduino-cli compile --fqbn rp2040:rp2040:rpipico2 --build-property \"build.extra_flags=-DCFG_TUD_CDC=1\" --board-options \"usbstack=tinyusb\" --board-options \"freq=240\" --output-dir \"/mnt/USBvalve_out\" \"\$1\"" >> /app/entrypoint.sh \
&& chmod +x /app/entrypoint.sh
ENTRYPOINT ["/app/entrypoint.sh"]

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 336 KiB

View File

@@ -52,7 +52,7 @@ This is also fully compatible with the [Waveshare RP2040-LCD-1.28](https://www.w
`pictures`: images and resources used in this doc
`STL`: STL files for enclosure. In `1.1` and `1.2` folders there are full enclosures (thanks to [WhistleMaster](https://github.com/WhistleMaster)). If you want something lighter to protect the LCD you can go with `USBvalve_sliding_cover.stl`.
`STL`: STL files for enclosure. In `1.1` and `1.2` folders there are full enclosures (thanks to [WhistleMaster](https://github.com/WhistleMaster)). In folders `1.2_64` and `1.2_64_simple` there are enclosures for the 128x64 screen (thanks to [rtmq0227](https://github.com/rtmq0227)). If you want something lighter to protect the LCD you can go with `USBvalve_sliding_cover.stl`.
## Build USBvalve
@@ -60,13 +60,15 @@ This is also fully compatible with the [Waveshare RP2040-LCD-1.28](https://www.w
If you want to build your own, you need:
- A Raspberry Pi Pico (or another RP2040 based board, like Arduino Nano RP2040)
- an I2C OLED screen 128x64 or 128x32
- A Raspberry Pi Pico 1 or 2 (or another RP2040 based board, like Arduino Nano RP2040)
- an I2C OLED screen 128x64 or 128x32 (SSD1306)
- (optional) a **USBvalve** PCB or a breadboard
- (optional) a 3D printed spacer to isolate the screen from the board (https://www.thingiverse.com/thing:4748043), but you can use a piece of electrical tape instead
### Building instructions
> Thanks to [Tz1rf](https://github.com/Tz1rf) we also have two great videos: one explaining the [building](https://youtu.be/7ymk8hD7-Hc) process step-by-step, and another showing how to [upload firmware](https://youtu.be/Tp8xvrlqxUY) and use the tool.
Almost all the job is done directly on the board by the software, so you just need to arrange the connection with the OLED for output.
Starting from version 0.8.0 of the firmware, **USBvalve** can detect HID devices (used to detect *BADUSB*). This require an additional USB port behaving as Host. If you are not interested in this, you can use the old instructions [in docs folder](https://github.com/cecio/USBvalve/blob/main/docs/BUILDING-1.1.md) and use PCB version `1.1`. Otherwise go ahead with PCB version `1.2` (we have version for USB-A or USB-B, see folder).
@@ -125,6 +127,28 @@ The mapping is the following:
If you want to use the DEBUG functions, you can also place a header on the 3 SWD PINs at the bottom of the board.
#### With USBpipe PCB
> [!CAUTION]
> This PCB is for experienced electronic makers
> **DON'T USE IT IF YOU AREN'T SURE YOU CAN HANDLE IT!**
> [!NOTE]
> R7 and R8 aren't actually connected to anything. They are added for circuit debugging purposes.
> So they don't show up in the BOM
<img src="./pictures/USB_pipe_finished_oled.jpg" alt="USBpipe PCB" width="15%" height="15%"/>
<img src="./pictures/USB_pipe_using.jpg" alt="USBpipe" width="15%" height="15%"/>
[USBpipe](https://github.com/LiPolymer/smartUSBPipe) is a dedicated PCB for this project.
You can find everything you need in `./PCB/USBpipe/` folder.
<img src="./pictures/USB_pipe_front.png" alt="Front" width="20%" height="20%"/>
<img src="./pictures/USB_pipe_back.png" alt="Back" width="20%" height="20%"/>
### Flash Firmware
To flash the firmware, follow these steps:
@@ -171,19 +195,23 @@ I grouped most of the variables you may want to modify in this section ([see Doc
Obviously you can also build your own firmware. To build the *standard* one I used:
- Arduino IDE `2.3.2`
- `Adafruit TinyUSB Library` version `3.1.1`, `Pico-PIO-USB` version `0.5.2`, Board `Raspberry Pi RP2040 (3.7.2)` setting Tools=>CPU Speed at `120MHz` and Tools=>USB Stack to `Adafruit TinyUSB`
- `ssd1306` OLED library version `1.8.3`
- Arduino IDE `2.3.4`
- `Adafruit TinyUSB Library` version `3.6.0`, `Pico-PIO-USB` version `0.7.2`, Board `Raspberry Pi RP2040 (4.5.4)` setting Tools=>CPU Speed at `133MHz` and Tools=>USB Stack to `Adafruit TinyUSB`
- `Adafruit_SSD1306` OLED library version `2.5.14`
Remember to add `https://github.com/earlephilhower/arduino-pico/releases/download/global/package_rp2040_index.json` in the `Additional Board Manager URLs` to install the proper board. Also, starting from `TinyUSB` version `3.4.2` is necessary to force the following macro setting `DCFG_TUD_CDC=1`. I strongly suggest you to use the provided *Dockerfiles* (see below).
If you want to re-create a new fake filesystem, you may want to have a look to the `utils` folder, where I placed some utilities to build a new one.
#### Dockerfile
If you want to build your own firmware, after you customized it, I provide a `Dockerfile` which builds a complete **Arduino** environment and compile the firmware. Enter the following commands in the main `USBvalve` folder:
If you want to build your own firmware, after you customized it, I provide a `Dockerfile` which builds a complete **Arduino** environment and compile the firmware. I added them for both `Pico` version 1 and 2.
Enter the following commands in the main `USBvalve` folder to build for Pico `v1`:
```
docker build -t usbvalve/arduino-cli .
docker run --rm --name usbvalve -v $PWD:/mnt usbvalve/arduino-cli /mnt/USBvalve
docker build -t usbvalve-pico1/arduino-cli -f Dockerfile.pico1 .
docker run --rm --name usbvalve -v $PWD:/mnt usbvalve-pico1/arduino-cli /mnt/USBvalve
```
The firmware will be placed with extension `uf2` in folder `USBvalve_out`.
@@ -196,6 +224,13 @@ If you have ideas or improvements in your mind, I encourage you to open an issue
If you have question or need support you can open an `Issue` here or reach me out on Twitter/X [@red5heep](https://twitter.com/red5heep)
### Community versions
The Community created some forks implementing support for other boards, or other modifications. **Thank you to everyone** who contributed to the development of **USBvalve**.
Here below an unofficial/incomplete/unsupported list:
- [USBvalve-tbfa-Mod](https://github.com/TryBreakFixAgain/USBvalve-tbfa-Mod)
## SAFETY WARNING
I've received a lot of questions about **USBvalve** and *USB killer devices*. **USBvalve** is not built to test these devices, it has not any kind of insulation or protection, so if you have the suspect you are dealing with one of these devices, test it with something else, NOT with **USBvalve** or you may damage the device, yourself or objects near to you.
> [!WARNING]
> I've received a lot of questions about **USBvalve** and *USB killer devices*. **USBvalve** is not built to test these devices, it has not any kind of insulation or protection, so if you have the suspect you are dealing with one of these devices, test it with something else, NOT with **USBvalve** or you may damage the device, yourself or objects near to you.

BIN
STL/1.2_64/renclosure.stl Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -35,7 +35,11 @@
#else
#include "SSD1306AsciiWire.h"
#include <SPI.h>
#include <Wire.h>
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>
// LED Pin. If solid GREEN everything is OK, otherwise it will be put OFF
#define LED_PIN 25
@@ -78,9 +82,10 @@ Arduino_GFX *gfx = new Arduino_GC9A01(bus, GFX_RST, 1 /* rotation */, true /* IP
#define I2C_ADDRESS 0x3C // 0X3C+SA0 - 0x3C or 0x3D
#define RST_PIN -1 // Define proper RST_PIN if required.
#define OLED_WIDTH 128
#define OLED_HEIGHT 32 // 64 or 32 depending on the OLED
#define OLED_LINES (OLED_HEIGHT / 8)
SSD1306AsciiWire display;
Adafruit_SSD1306 display(OLED_WIDTH, OLED_HEIGHT, &Wire, RST_PIN);
#endif
@@ -111,7 +116,7 @@ bool activeState = false;
//
// USBvalve globals
//
#define VERSION "USBvalve - 0.17.0"
#define VERSION "USBvalve - 0.21.1"
boolean readme = false;
boolean autorun = false;
boolean written = false;
@@ -120,6 +125,9 @@ boolean written_reported = false;
boolean deleted_reported = false;
boolean hid_sent = false;
boolean hid_reported = false;
uint hid_event_num = 0;
static spin_lock_t *lock;
//
// Anti-Detection settings.
@@ -154,6 +162,9 @@ uint valid_hash = 2362816530;
// Core 0 Setup: will be used for the USB mass device functions
void setup() {
// Initialize the spinlock
lock = spin_lock_instance(0);
// Change all the USB Pico settings
TinyUSBDevice.setID(USB_VENDORID, USB_PRODUCTID);
TinyUSBDevice.setProductDescriptor(USB_DESCRIPTOR);
@@ -204,30 +215,18 @@ void setup() {
gfx->draw16bitRGBBitmap(10,0,background,210,210); // Draw background
delay(2000);
#else
Wire.begin();
Wire.setClock(400000L);
#if OLED_HEIGHT == 64
#if RST_PIN >= 0
display.begin(&Adafruit128x64, I2C_ADDRESS, RST_PIN);
display.begin(SSD1306_SWITCHCAPVCC, I2C_ADDRESS, RST_PIN);
#else
display.begin(&Adafruit128x64, I2C_ADDRESS);
#endif
#else
#if RST_PIN >= 0
display.begin(&Adafruit128x32, I2C_ADDRESS, RST_PIN);
#else
display.begin(&Adafruit128x32, I2C_ADDRESS);
#endif
display.begin(SSD1306_SWITCHCAPVCC, I2C_ADDRESS);
#endif
#endif
#if defined(PIWATCH)
// gfx->setTextSize(tsb);
gfx->setTextSize(1);
gfx->setTextColor(MAGENTA);
#else
display.setFont(Adafruit5x7);
display.setScrollMode(SCROLL_MODE_AUTO);
display.setTextSize(1);
#endif
cls(); // Clear display
@@ -254,7 +253,12 @@ void setup() {
// Core 1 Setup: will be used for the USB host functions for BADUSB detector
void setup1() {
// Set a custom clock (multiple of 12Mhz) to achieve maximum compatibility for HID
// Differntiated between Pico 1 and Pico 2
#ifdef PICO_RP2350
set_sys_clock_khz(144000, true);
#elif defined PICO_RP2040
set_sys_clock_khz(240000, true);
#endif
pio_usb_configuration_t pio_cfg = PIO_USB_DEFAULT_CONFIG;
pio_cfg.pin_dp = HOST_PIN_DP;
@@ -310,10 +314,24 @@ void loop() {
}
if (BOOTSEL) {
uint32_t press_start = to_ms_since_boot(get_absolute_time());
while (BOOTSEL) {
sleep_ms(10);
}
uint32_t press_end = to_ms_since_boot(get_absolute_time());
uint32_t press_duration = press_end - press_start;
if (press_duration > 2000) { // Press duration > 2sec
// Print the number of HID events detected so far
char outstr[22];
snprintf(outstr, 21, "\n[+] HID Evt# %d", hid_event_num);
printout(outstr);
} else {
printout("\n[+] RESETTING");
swreset();
}
}
}
// Main Core1 loop: managing USB Host
void loop1() {
@@ -430,11 +448,46 @@ void printout(const char *str)
} else {
gfx->print(str);
}
// Output on serial device
SerialTinyUSB.println(str);
}
#else
void scrollUp(uint8_t pixels) {
// Read the current content of the display, shift it up by 'pixels' rows
display.startscrollright(0x00, 0x07); // Dummy values to initiate scroll
display.stopscroll(); // Immediately stop to manually shift pixels in memory
for (int i = 0; i < display.height() - pixels; i++) {
for (int j = 0; j < display.width(); j++) {
uint8_t color = display.getPixel(j, i + pixels);
display.drawPixel(j, i, color);
}
}
// Clear the freed space after scrolling
display.fillRect(0, display.height() - pixels, display.width(), pixels, SSD1306_BLACK);
// Refresh the display to show the changes
display.display();
}
void checkAndScroll() {
// Assumes text height of 8 pixels, but check for 16 because newline is not used
if ((display.getCursorY() + 16) > display.height()) {
// Scroll up by 8 pixels
scrollUp(8);
display.setCursor(0, display.getCursorY() - 8);
}
}
void printout(const char *str)
{
checkAndScroll();
display.print(str);
display.display();
// Output on serial device
SerialTinyUSB.println(str);
}
#endif
@@ -450,7 +503,9 @@ void cls(void) {
#else
// Clear display
void cls(void) {
display.clear();
display.clearDisplay();
display.setTextColor(SSD1306_WHITE);
display.setCursor(0, 0);
printout(VERSION);
printout("\n-----------------");
}
@@ -507,6 +562,9 @@ static uint8_t const keycode2ascii[128][2] = { HID_KEYCODE_TO_ASCII };
// Invoked when device with hid interface is mounted
void tuh_hid_mount_cb(uint8_t dev_addr, uint8_t instance, uint8_t const* desc_report, uint16_t desc_len) {
uint32_t lock_num = spin_lock_blocking(lock);
uint16_t vid, pid;
const char* protocol_str[] = { "None", "Keyboard", "Mouse" };
@@ -527,20 +585,27 @@ void tuh_hid_mount_cb(uint8_t dev_addr, uint8_t instance, uint8_t const* desc_re
if (!tuh_hid_receive_report(dev_addr, instance)) {
SerialTinyUSB.printf("Error: cannot request to receive report\r\n");
}
spin_unlock(lock, lock_num);
}
// Invoked when device with hid interface is un-mounted
void tuh_hid_umount_cb(uint8_t dev_addr, uint8_t instance) {
uint32_t lock_num = spin_lock_blocking(lock);
SerialTinyUSB.printf("HID device address = %d, instance = %d unmounted\r\n", dev_addr, instance);
// Reset HID sent flag
hid_sent = false;
hid_reported = false;
hid_event_num = 0;
spin_unlock(lock, lock_num);
}
// Invoked when received report from device
void tuh_hid_report_received_cb(uint8_t dev_addr, uint8_t instance, uint8_t const* report, uint16_t len) {
uint32_t lock_num = spin_lock_blocking(lock);
static bool kbd_printed = false;
static bool mouse_printed = false;
@@ -558,6 +623,7 @@ void tuh_hid_report_received_cb(uint8_t dev_addr, uint8_t instance, uint8_t cons
mouse_printed = false;
}
process_kbd_report((hid_keyboard_report_t const*)report);
hid_event_num++;
break;
case HID_ITF_PROTOCOL_MOUSE:
@@ -567,17 +633,21 @@ void tuh_hid_report_received_cb(uint8_t dev_addr, uint8_t instance, uint8_t cons
kbd_printed = false;
}
process_mouse_report((hid_mouse_report_t const*)report);
hid_event_num++;
break;
default:
// Generic report: for the time being we use kbd for this as well
process_kbd_report((hid_keyboard_report_t const*)report);
hid_event_num++;
break;
}
if (!tuh_hid_receive_report(dev_addr, instance)) {
SerialTinyUSB.println("Error: cannot request to receive report");
}
spin_unlock(lock, lock_num);
}
static inline bool find_key_in_report(hid_keyboard_report_t const* report, uint8_t keycode) {
@@ -697,24 +767,32 @@ void cursor_movement(int8_t x, int8_t y, int8_t wheel) {
// Invoked when a device with MassStorage interface is mounted
void tuh_msc_mount_cb(uint8_t dev_addr) {
uint32_t lock_num = spin_lock_blocking(lock);
printout("\n[++] Mass Device");
SerialTinyUSB.printf("Mass Device attached, address = %d\r\n", dev_addr);
spin_unlock(lock, lock_num);
}
// Invoked when a device with MassStorage interface is unmounted
void tuh_msc_umount_cb(uint8_t dev_addr) {
uint32_t lock_num = spin_lock_blocking(lock);
SerialTinyUSB.printf("Mass Device unmounted, address = %d\r\n", dev_addr);
spin_unlock(lock, lock_num);
}
// Invoked when a device with CDC (Communication Device Class) interface is mounted
void tuh_cdc_mount_cb(uint8_t idx) {
uint32_t lock_num = spin_lock_blocking(lock);
printout("\n[++] CDC Device");
SerialTinyUSB.printf("CDC Device attached, idx = %d\r\n", idx);
spin_unlock(lock, lock_num);
}
// Invoked when a device with CDC (Communication Device Class) interface is unmounted
void tuh_cdc_umount_cb(uint8_t idx) {
uint32_t lock_num = spin_lock_blocking(lock);
SerialTinyUSB.printf("CDC Device unmounted, idx = %d\r\n", idx);
spin_unlock(lock, lock_num);
}
// END of OTHER Host devices detector section

Binary file not shown.

Binary file not shown.

BIN
pictures/USB_pipe_back.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 408 KiB

BIN
pictures/USB_pipe_front.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 KiB

BIN
pictures/USB_pipe_using.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 745 KiB