24 lines
590 B
C
24 lines
590 B
C
|
// Copyright 2024 Nico Stuhlmüller (@ThePurox)
|
||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
/*
|
||
|
* 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
|
||
|
#define WS2812_PIO_USE_PIO1 // Force the usage of PIO1 peripheral, by default the WS2812 implementation uses the PIO0 peripheral
|
||
|
#define WS2812_DI_PIN GP0
|
||
|
#define HOLD_ON_OTHER_KEY_PRESS
|