config.h (1354B)
1 /* 2 Copyright 2012 Jun Wako <wakojun@gmail.com> 3 4 This program is free software: you can redistribute it and/or modify 5 it under the terms of the GNU General Public License as published by 6 the Free Software Foundation, either version 2 of the License, or 7 (at your option) any later version. 8 9 This program is distributed in the hope that it will be useful, 10 but WITHOUT ANY WARRANTY; without even the implied warranty of 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 GNU General Public License for more details. 13 14 You should have received a copy of the GNU General Public License 15 along with this program. If not, see <http://www.gnu.org/licenses/>. 16 */ 17 18 #pragma once 19 20 // Audio Click 21 //#define AUDIO_CLICKY 22 23 // Music Mode Polyphony 24 // NOTE: Must change polyphony_rate to a number higher than 0 in voices.c 25 //#define AUDIO_VOICES 26 //#define PITCH_STANDARD_A 880.0f 27 28 // Mouse keys 29 #define MOUSEKEY_DELAY 0 30 #define MOUSEKEY_INTERVAL 20 31 #define MOUSEKEY_MAX_SPEED 2 32 #define MOUSEKEY_TIME_TO_MAX 5 33 #define MOUSEKEY_WHEEL_DELAY 0 34 35 /* 36 * Feature disable options 37 * These options are also useful to firmware size reduction. 38 */ 39 40 /* disable debug print */ 41 //#define NO_DEBUG 42 43 /* disable print */ 44 //#define NO_PRINT 45 46 /* disable action features */ 47 //#define NO_ACTION_LAYER 48 //#define NO_ACTION_TAPPING 49 //#define NO_ACTION_ONESHOT