aboutsummaryrefslogtreecommitdiff
path: root/keyboards/bfake
diff options
context:
space:
mode:
authorfauxpark <fauxpark@gmail.com>2019-11-15 10:21:53 +1100
committerGitHub <noreply@github.com>2019-11-15 10:21:53 +1100
commit519df78cdbf7211b9e1ac6b961b0e10bb5164914 (patch)
tree767881cdf729173faaa29537d16dd6bdc1f65b55 /keyboards/bfake
parent30473357290747be06e9200a7d9c751738a3b0a1 (diff)
downloadqmk_firmware-519df78cdbf7211b9e1ac6b961b0e10bb5164914.tar.gz
qmk_firmware-519df78cdbf7211b9e1ac6b961b0e10bb5164914.zip
Set device version from config.h for V-USB boards (#7316)
Diffstat (limited to 'keyboards/bfake')
-rw-r--r--keyboards/bfake/config.h1
-rw-r--r--keyboards/bfake/usbconfig.h2
2 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/bfake/config.h b/keyboards/bfake/config.h
index 8a43aacd9..0a8911b09 100644
--- a/keyboards/bfake/config.h
+++ b/keyboards/bfake/config.h
@@ -22,6 +22,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
22 22
23#define VENDOR_ID 0x20A0 23#define VENDOR_ID 0x20A0
24#define PRODUCT_ID 0x422D 24#define PRODUCT_ID 0x422D
25#define DEVICE_VER 0x0200
25#define MANUFACTURER NotActuallyWinkeyless 26#define MANUFACTURER NotActuallyWinkeyless
26#define PRODUCT b.fake 27#define PRODUCT b.fake
27 28
diff --git a/keyboards/bfake/usbconfig.h b/keyboards/bfake/usbconfig.h
index f6c85cc69..85a915bb4 100644
--- a/keyboards/bfake/usbconfig.h
+++ b/keyboards/bfake/usbconfig.h
@@ -228,7 +228,7 @@ section at the end of this file).
228 * with libusb: 0x16c0/0x5dc. Use this VID/PID pair ONLY if you understand 228 * with libusb: 0x16c0/0x5dc. Use this VID/PID pair ONLY if you understand
229 * the implications! 229 * the implications!
230 */ 230 */
231#define USB_CFG_DEVICE_VERSION 0x00, 0x02 231#define USB_CFG_DEVICE_VERSION (DEVICE_VER & 0xFF), ((DEVICE_VER >> 8) & 0xFF)
232/* Version number of the device: Minor number first, then major number. 232/* Version number of the device: Minor number first, then major number.
233 */ 233 */
234#define USB_CFG_VENDOR_NAME 'w', 'i', 'n', 'k', 'e', 'y', 'l', 'e', 's', 's', '.', 'k', 'r' 234#define USB_CFG_VENDOR_NAME 'w', 'i', 'n', 'k', 'e', 'y', 'l', 'e', 's', 's', '.', 'k', 'r'