From 2a6f0c8d4bcaf427460b4108b16a950b26da9c03 Mon Sep 17 00:00:00 2001 From: Scott Shawcroft Date: Tue, 10 Sep 2024 13:47:02 -0700 Subject: [PATCH] Disable USB PID check for P4 --- tools/ci_check_duplicate_usb_vid_pid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci_check_duplicate_usb_vid_pid.py b/tools/ci_check_duplicate_usb_vid_pid.py index 2a644a8393f5..76bb7afea442 100644 --- a/tools/ci_check_duplicate_usb_vid_pid.py +++ b/tools/ci_check_duplicate_usb_vid_pid.py @@ -98,7 +98,7 @@ def check_vid_pid(files, clusterlist): """ usb_pattern = re.compile( - r"^CIRCUITPY_USB_DEVICE\s*=\s*0$|^IDF_TARGET = (esp32|esp32c2|esp32c3|esp32c6|esp32h2)$|^MCU_SERIES = MG24$", + r"^CIRCUITPY_USB_DEVICE\s*=\s*0$|^IDF_TARGET = (esp32|esp32c2|esp32c3|esp32c6|esp32h2|esp32p4)$|^MCU_SERIES = MG24$", flags=re.M, )