mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-09-10 17:15:43 +00:00
Merge 109a1a22f1 into c113250c4e
This commit is contained in:
@@ -1,28 +0,0 @@
|
||||
// Copyright 2022 Vino Rodrigues (@vinorodrigues)
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#pragma once
|
||||
|
||||
#if defined(RGB_MATRIX_ENABLE)
|
||||
#ifndef ID61_DISABLE_UNDERGLOW
|
||||
#define RGB_MATRIX_LED_COUNT 71
|
||||
#else
|
||||
#define RGB_MATRIX_LED_COUNT 61 // = 71 - 10
|
||||
#endif
|
||||
#endif // RGB_MATRIX_ENABLE
|
||||
|
||||
/* -----------------------
|
||||
* Feature disable options
|
||||
* These options are also useful to firmware size reduction.
|
||||
* ----------------------- */
|
||||
|
||||
/* disable debug print */
|
||||
// #define NO_DEBUG
|
||||
|
||||
/* disable print */
|
||||
// #define NO_PRINT
|
||||
|
||||
/* disable action features */
|
||||
// #define NO_ACTION_LAYER
|
||||
// #define NO_ACTION_TAPPING
|
||||
// #define NO_ACTION_ONESHOT
|
||||
@@ -1,8 +0,0 @@
|
||||
# The Denwir D60 case has a sealed/solid undercase,
|
||||
# this enables switching off thoes LEDs
|
||||
# Usage: `make idobao/id61:default UNDERGLOW=off`
|
||||
|
||||
UNDERGLOW ?= yes
|
||||
ifneq ($(strip $(UNDERGLOW)), yes)
|
||||
OPT_DEFS += -DID61_DISABLE_UNDERGLOW
|
||||
endif
|
||||
@@ -1,28 +0,0 @@
|
||||
// Copyright 2022 Vino Rodrigues (@vinorodrigues)
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#pragma once
|
||||
|
||||
#if defined(RGB_MATRIX_ENABLE)
|
||||
#ifndef ID63_DISABLE_UNDERGLOW
|
||||
#define RGB_MATRIX_LED_COUNT 75
|
||||
#else
|
||||
#define RGB_MATRIX_LED_COUNT (75 - 12)
|
||||
#endif
|
||||
#endif // RGB_MATRIX_ENABLE
|
||||
|
||||
/* -----------------------
|
||||
* Feature disable options
|
||||
* These options are also useful to firmware size reduction.
|
||||
* ----------------------- */
|
||||
|
||||
/* disable debug print */
|
||||
// #define NO_DEBUG
|
||||
|
||||
/* disable print */
|
||||
// #define NO_PRINT
|
||||
|
||||
/* disable action features */
|
||||
// #define NO_ACTION_LAYER
|
||||
// #define NO_ACTION_TAPPING
|
||||
// #define NO_ACTION_ONESHOT
|
||||
@@ -1,8 +0,0 @@
|
||||
# The Denwir D60 case has a sealed/solid undercase,
|
||||
# this enables switching off thoes LEDs
|
||||
# Usage: `make idobao/id63:default UNDERGLOW=off`
|
||||
|
||||
UNDERGLOW ?= yes
|
||||
ifneq ($(strip $(UNDERGLOW)), yes)
|
||||
OPT_DEFS += -DID63_DISABLE_UNDERGLOW
|
||||
endif
|
||||
@@ -1,30 +0,0 @@
|
||||
// Copyright 2021 Tybera (@tybera)
|
||||
// Copyright 2021 Werther (@thewerther)
|
||||
// Copyright 2022 Vino Rodrigues (@vinorodrigues)
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#pragma once
|
||||
|
||||
#if defined(RGB_MATRIX_ENABLE)
|
||||
#ifndef ID67_DISABLE_UNDERGLOW
|
||||
#define RGB_MATRIX_LED_COUNT 77
|
||||
#else
|
||||
#define RGB_MATRIX_LED_COUNT (77 - 10)
|
||||
#endif
|
||||
#endif // RGB_MATRIX_ENABLE
|
||||
|
||||
/* -----------------------
|
||||
* Feature disable options
|
||||
* These options are also useful to firmware size reduction.
|
||||
* ----------------------- */
|
||||
|
||||
/* disable debug print */
|
||||
// #define NO_DEBUG
|
||||
|
||||
/* disable print */
|
||||
// #define NO_PRINT
|
||||
|
||||
/* disable action features */
|
||||
// #define NO_ACTION_LAYER
|
||||
// #define NO_ACTION_TAPPING
|
||||
// #define NO_ACTION_ONESHOT
|
||||
@@ -1,8 +0,0 @@
|
||||
# Some ID67 variants (v1 base build & "Bestype") have a solid back plate,
|
||||
# this enables switching off thoes LEDs
|
||||
# Usage: `make idobao/id67:default UNDERGLOW=off`
|
||||
|
||||
UNDERGLOW ?= yes
|
||||
ifneq ($(strip $(UNDERGLOW)), yes)
|
||||
OPT_DEFS += -DID67_DISABLE_UNDERGLOW
|
||||
endif
|
||||
@@ -1,28 +0,0 @@
|
||||
// Copyright 2022 IBNobody (@IBNobody)
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#pragma once
|
||||
|
||||
#if defined(RGB_MATRIX_ENABLE)
|
||||
#ifndef ID27_DISABLE_UNDERGLOW
|
||||
#define RGB_MATRIX_LED_COUNT 31 // The number of LEDs connected
|
||||
#else
|
||||
#define RGB_MATRIX_LED_COUNT 27 // -4 disabled underglow LEDs
|
||||
#endif
|
||||
#endif // RGB_MATRIX_ENABLE
|
||||
|
||||
/* -----------------------
|
||||
* Feature disable options
|
||||
* These options are also useful to firmware size reduction.
|
||||
* ----------------------- */
|
||||
|
||||
/* disable debug print */
|
||||
// #define NO_DEBUG
|
||||
|
||||
/* disable print */
|
||||
// #define NO_PRINT
|
||||
|
||||
/* disable action features */
|
||||
// #define NO_ACTION_LAYER
|
||||
// #define NO_ACTION_TAPPING
|
||||
// #define NO_ACTION_ONESHOT
|
||||
@@ -1,8 +0,0 @@
|
||||
# some (if not most) Montex have a solid back plate,
|
||||
# this enables switching off the bottom facing LEDs
|
||||
# Usage: `make idobao/montex/v2:default UNDERGLOW=off`
|
||||
|
||||
UNDERGLOW ?= yes
|
||||
ifneq ($(strip $(UNDERGLOW)), yes)
|
||||
OPT_DEFS += -DID27_DISABLE_UNDERGLOW
|
||||
endif
|
||||
Reference in New Issue
Block a user