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 
9 #ifdef CHERRYUSB_VERSION
10 #warning "Please do not define CHERRYUSB_VERSION in usb_config.h"
11 #undef CHERRYUSB_VERSION
12 #endif
13 #ifdef CHERRYUSB_VERSION_STR
14 #warning "Please do not define CHERRYUSB_VERSION_STR in usb_config.h"
15 #undef CHERRYUSB_VERSION_STR
16 #endif
17 
18 #define CHERRYUSB_VERSION     0x010502
19 #define CHERRYUSB_VERSION_STR "v1.5.2"
20 
21 #endif