mirror of
https://github.com/zsa/qmk_firmware.git
synced 2026-05-07 03:40:00 +00:00
* fix: Change webhid_leds variable declaration location * fix: various oryx issues * Also fix aliases * Fix test case in alias * Add additional define * Cleanup workflow * fix more
17 lines
447 B
C
17 lines
447 B
C
// Copyright 2024 ZSA Technology Labs, Inc <@zsa>
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#ifdef ORYX_ENABLE
|
|
# ifndef FIRMWARE_VERSION
|
|
# define FIRMWARE_VERSION u8"default/latest"
|
|
# endif // FIRMWARE_VERSION
|
|
# ifndef RAW_USAGE_PAGE
|
|
# define RAW_USAGE_PAGE 0xFF60
|
|
# endif // RAW_USAGE_PAGE
|
|
# ifndef RAW_USAGE_ID
|
|
# define RAW_USAGE_ID 0x61
|
|
# endif // RAW_USAGE_ID
|
|
#endif // ORYX_ENABLE
|