1# FAQs 2 3## What should I do if the device list obtained by using usbManager.getDevices is empty when the device is connected to a PC using a USB cable? 4 5### Symptom 6 7After a device is connected to a PC using a USB cable, the device list obtained by **usbManager.getDevices** is empty, and the PC is not identified as a USB device. 8 9### Possible Causes 10 11USB devices are classified into two types: host and device. The USB host takes charge of data transmission and USB port management, and USB devices are managed by the USB host. 12 13If the current device functions as the USB host, the **usbManager.getDevices** API can be used to obtain the list of connected USB devices. 14 15Based on the preceding description: 16 17- When a device, for example, a phone, is connected to a PC using a USB cable, the PC is the USB host by default, and the phone is a USB device. It is normal if the device list obtained by calling **usbManager.getDevices** on the phone is empty. 18- When a device, for example, a phone, is connected to a mouse or keyboard using a USB cable, the phone is the USB host by default, and the mouse or keyboard is the USB device. In this case, you can call the **usbManager.getDevices** API on the phone to obtain the device list. 19 20### Solution 21 22Ensure that the current device is the USB host and the connected device is the USB device. (Some devices can serve both as the USB host and USB device. In this case, you need to set such devices as USB devices so that the device list can be obtained by the USB host.) 23 24## What should I do if garbled characters are displayed when data is transferred through the USB? 25 26### Symptom 27 28Garbled characters are displayed during data transfer. 29 30### Possible Causes 31 32The baud rate does not match. 33 34### Solution 35 36Check whether the baud rates at both ends are the same. If not, reconfigure the baud rates. 37 38## What should I do if communication fails when data is transferred through the USB? 39 40### Symptom 41 42The connection cannot be set up between the two ends. No data is transferred or received, or the transferred data frames are incomplete (for example, only some bytes are received). 43 44### Possible Causes 45 46The parity bit or stop bit is incorrectly configured. 47 48### Solution 49 50Check whether the settings of the parity bit or stop bit at both ends are the same as those required by the device. 51 52## What should I do if packet loss occurs when data is transferred through the USB? 53 54 55### Symptom 56 57Occasional packet loss occurs during data transfer. 58 59### Possible Causes 60 61Noise interference or insufficient stop bit. 62 63### Solution 64 65Check whether interference exists. Modify the stop bit to improve the anti-interference capability (for example, change the stop bit from 1 to 2). 66