diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-09-28 23:57:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-28 23:57:50 -0400 |
commit | f0db230c461b77d0d24984d4f0dcd26f12e67076 (patch) | |
tree | 054ee42af8683f22b3f0ddf36a43d8c33d713454 /keyboards/vision_division/config.h | |
parent | 812219e8a0bf5f317c000d3c5247cdb93a6d7fff (diff) | |
parent | 78767bf2084a1d63edd0957e09048d34ef448380 (diff) |
Merge pull request #790 from IBNobody/master
Fix #770, Fix #779, Update Vision
Diffstat (limited to 'keyboards/vision_division/config.h')
-rw-r--r-- | keyboards/vision_division/config.h | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/keyboards/vision_division/config.h b/keyboards/vision_division/config.h index f50378ffa8..1f8466a546 100644 --- a/keyboards/vision_division/config.h +++ b/keyboards/vision_division/config.h @@ -26,10 +26,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. /* COL2ROW or ROW2COL */ #define DIODE_DIRECTION ROW2COL -// #define BACKLIGHT_PIN B7 -// #define BACKLIGHT_BREATHING -// #define BACKLIGHT_LEVELS 3 - +#define BACKLIGHT_PIN B7 +#define BACKLIGHT_BREATHING +#define BACKLIGHT_LEVELS 3 /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */ #define DEBOUNCING_DELAY 5 @@ -124,10 +123,18 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ /* disable debug print */ -//#define NO_DEBUG +// #ifndef NO_DEBUG +// # define NO_DEBUG +// #endif /* disable print */ -//#define NO_PRINT +// #ifndef NO_PRINT +// # define NO_PRINT +// #endif + +/* Only print user print statements */ +// #define USER_PRINT + /* disable action features */ //#define NO_ACTION_LAYER |