diff --git a/mcux/README b/mcux/README index ade79ed85..59c6e3064 100644 --- a/mcux/README +++ b/mcux/README @@ -77,7 +77,6 @@ Patch List: - All *.a binary archive files. Files are still present in the SDK github repo but are not allowed in Zephyr Project - mcux-sdk\manifests - mcux-sdk\docs - - skipped update of mcux-sdk\components\osa\ due to build errors - skipped update of mcux-sdk\components\conn_fwloader\mcux-sdk\components\conn_fwloader\ due to build errors @@ -94,3 +93,4 @@ Patch List: - MCXA14x family - MCXA15x family - MCXN23x family + - add kUSB_DeviceNotifySOF to usb_device_mcux_drv_port.h SDK USB stack already supports it in SDK 2.16.0 diff --git a/mcux/middleware/mcux-sdk-middleware-usb/device/usb_device_mcux_drv_port.h b/mcux/middleware/mcux-sdk-middleware-usb/device/usb_device_mcux_drv_port.h index c8e5522e6..74ee5c119 100644 --- a/mcux/middleware/mcux-sdk-middleware-usb/device/usb_device_mcux_drv_port.h +++ b/mcux/middleware/mcux-sdk-middleware-usb/device/usb_device_mcux_drv_port.h @@ -32,6 +32,7 @@ typedef enum _usb_device_notification kUSB_DeviceNotifyError, /*!< Errors happened in bus */ kUSB_DeviceNotifyDetach, /*!< Device disconnected from a host */ kUSB_DeviceNotifyAttach, /*!< Device connected to a host */ + kUSB_DeviceNotifySOF, /*!< Start of Frame received */ #if (defined(USB_DEVICE_CONFIG_CHARGER_DETECT) && (USB_DEVICE_CONFIG_CHARGER_DETECT > 0U)) kUSB_DeviceNotifyDcdDetectFinished, /*!< Device charger detection finished */ #endif