summaryrefslogtreecommitdiff
path: root/common/usb_version.h
blob: 41cae0e751ecd0b3d02b794a8b39d0df7320b911 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Copyright (c) 2024, sakumisu
 *
 * SPDX-License-Identifier: Apache-2.0
 */
#ifndef USB_VERSION_H
#define USB_VERSION_H

#ifdef CHERRYUSB_VERSION
#warning "Please do not define CHERRYUSB_VERSION in usb_config.h"
#undef CHERRYUSB_VERSION
#endif
#ifdef CHERRYUSB_VERSION_STR
#warning "Please do not define CHERRYUSB_VERSION_STR in usb_config.h"
#undef CHERRYUSB_VERSION_STR
#endif

#define CHERRYUSB_VERSION     0x010501
#define CHERRYUSB_VERSION_STR "v1.5.1"

#endif