2017-09-14 11:02:49 -07:00
|
|
|
/* Copyright 2017 Christopher Browne
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2016-06-21 07:21:43 -07:00
|
|
|
#ifndef CONFIG_USER_H
|
|
|
|
#define CONFIG_USER_H
|
|
|
|
|
2017-02-16 10:13:38 -08:00
|
|
|
#ifndef NO_DEBUG
|
2016-12-01 13:21:15 -08:00
|
|
|
#define NO_DEBUG
|
2017-02-16 10:13:38 -08:00
|
|
|
#endif
|
|
|
|
#ifndef NO_PRINT
|
2016-12-01 13:21:15 -08:00
|
|
|
#define NO_PRINT
|
2017-02-16 10:13:38 -08:00
|
|
|
#endif
|
2016-12-01 13:21:15 -08:00
|
|
|
|
2016-06-21 07:21:43 -07:00
|
|
|
#include "../../config.h"
|
|
|
|
|
2016-09-16 14:15:33 -07:00
|
|
|
#define LEADER_TIMEOUT 300
|
2018-03-12 15:18:40 -07:00
|
|
|
|
|
|
|
#ifndef LIGHT_CONFIG_H
|
2016-09-16 14:15:33 -07:00
|
|
|
#define BACKLIGHT_BREATHING
|
2018-03-12 15:18:40 -07:00
|
|
|
#endif
|
2016-09-16 14:15:33 -07:00
|
|
|
|
2016-06-13 16:06:32 -07:00
|
|
|
/* cbbrowne user configuration */
|
|
|
|
|
|
|
|
#define randadd 53
|
|
|
|
#define randmul 181
|
|
|
|
#define randmod 167
|
|
|
|
|
2016-06-21 09:45:38 -07:00
|
|
|
/* Filler to make layering a bit clearer *
|
|
|
|
* borrowed from basic keymap */
|
|
|
|
|
2017-09-14 11:02:49 -07:00
|
|
|
#define _____ KC_NO
|
2016-06-21 09:36:26 -07:00
|
|
|
|
2016-06-21 07:21:43 -07:00
|
|
|
#endif
|
|
|
|
|