1# Preparing the Environment 2 3### Development Tool and Configuration 4 5DevEco Studio, as the driver development tool, allows you to develop, debug, and package drivers. 6 7[Download and install](https://developer.huawei.com/consumer/en/download/) DevEco Studio and verify basic operations to ensure that it can function properly. For details, see [Creating and Running a Project](https://developer.huawei.com/consumer/en/doc/harmonyos-guides-V13/ide-create-new-project-V13) in [DevEco Studio User Guide](https://developer.huawei.com/consumer/en/doc/harmonyos-guides-V13/ide-tools-overview-V13). 8 9### SDK Version Configuration 10 11The ArkTs APIs for peripheral management can be used only when the SDK is of API version 10 or later. 12 13The SDK version must meet the following requirements when you develop dedicated peripheral drivers or enhanced peripheral drivers based on the DDK. 14 15| NDK API | SDK Version | 16|----------------|----------| 17| USB DDK | API version 10 or later| 18| HID DDK | API version 11 or later| 19| USB Serial DDK | API version 18 or later| 20| SCSI Peripheral DDK | API version 18 or later| 21 22### Verifying the Environment 23 24Check whether DevEco Studio is connected to the OpenHarmony device. 25 26 27 28### HDC Configuration 29 30HarmonyOS Device Connector (hdc) is a command-line tool for debugging. It can be used to interact with real devices or the Emulators on Windows, Linux, and macOS. For details about the configuration, see [hdc](https://developer.huawei.com/consumer/en/doc/harmonyos-guides-V5/hdc-V5). 31 32**NOTE**<br>Configuration of the environment variable **hdc_server_port** and global environment variables is mandatory. 33 34### Development Device 35<!--RP1--> 36- Currently, RK3568 is used as the device for development, debugging, and verification. For details about how to compile and burn the RK3568, see [Quick Start](https://gitee.com/openharmony/docs/blob/master/en/device-dev/quick-start/quickstart-pkg-3568-burn.md).<!--RP1End--> 37- During peripheral client and driver development, you need to connect an external USB device for debugging. Currently, **only an external USB device is supported**. 38- The product ID and vendor ID of the USB device are required for defining drivers and implementing IPC. 39 40<!--no_check-->