stm32mp2_usb_dfu.c 308 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (c) 2024, STMicroelectronics - All Rights Reserved
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #include <stddef.h>
  7. #include <drivers/usb_device.h>
  8. #include <usb_dfu.h>
  9. struct usb_handle *usb_dfu_plat_init(void)
  10. {
  11. return NULL;
  12. }
  13. uint8_t usb_dfu_get_phase(uint8_t alt)
  14. {
  15. return 0;
  16. }