rp2040: add usb settings

This commit is contained in:
sago35
2022-06-27 22:13:38 +09:00
committed by Ron Evans
parent 07049b87b6
commit 1766746c60
8 changed files with 48 additions and 0 deletions
+11
View File
@@ -79,3 +79,14 @@ const (
// Default Serial In Bus 1 for SPI communications to muSDcard
SPI1_SDI_PIN = GPIO12 // Rx
)
// USB identifiers
const (
usb_STRING_PRODUCT = "Thing Plus RP2040"
usb_STRING_MANUFACTURER = "SparkFun"
)
var (
usb_VID uint16 = 0x1B4F
usb_PID uint16 = 0x0026
)