usb_version.h 470 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (c) 2024, sakumisu
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef USB_VERSION_H
  7. #define USB_VERSION_H
  8. #ifdef CHERRYUSB_VERSION
  9. #warning "Please do not define CHERRYUSB_VERSION in usb_config.h"
  10. #undef CHERRYUSB_VERSION
  11. #endif
  12. #ifdef CHERRYUSB_VERSION_STR
  13. #warning "Please do not define CHERRYUSB_VERSION_STR in usb_config.h"
  14. #undef CHERRYUSB_VERSION_STR
  15. #endif
  16. #define CHERRYUSB_VERSION 0x010402
  17. #define CHERRYUSB_VERSION_STR "v1.4.2"
  18. #endif