From 2b9e4a8d70b7a4c1282f94270a296a43676a984f Mon Sep 17 00:00:00 2001 From: mojyack Date: Fri, 19 Dec 2025 17:21:18 +0900 Subject: [PATCH] config: define USB_ENABLE_IAP iap is only enabled for idevices. it will not work without apple vendor id anyway. Change-Id: I1696dbc8a2304fc5eecc5432b4c52e25801c468e --- firmware/export/config.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/firmware/export/config.h b/firmware/export/config.h index 4cd178e405..bcea581141 100644 --- a/firmware/export/config.h +++ b/firmware/export/config.h @@ -1396,6 +1396,10 @@ Lyre prototype 1 */ #define USB_ENABLE_AUDIO #endif +#if defined(USB_HAS_INTERRUPT) && defined(USB_HAS_ISOCHRONOUS) && USB_VENDOR_ID == 0x05ac +#define USB_ENABLE_IAP +#endif + #endif /* BOOTLOADER */ #endif /* HAVE_USBSTACK */