mirror of
https://github.com/nalf3in/vial-qmk.git
synced 2025-12-22 03:30:03 +00:00
37 lines
883 B
C
37 lines
883 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#pragma once
|
|
|
|
#ifdef AUDIO_ENABLE
|
|
# define STARTUP_SONG SONG(PLANCK_SOUND)
|
|
// #define STARTUP_SONG SONG(NO_SOUND)
|
|
#endif
|
|
|
|
/*
|
|
* MIDI options
|
|
*/
|
|
|
|
/* enable basic MIDI features:
|
|
- MIDI notes can be sent when in Music mode is on
|
|
*/
|
|
|
|
#define MIDI_BASIC
|
|
|
|
/* enable advanced MIDI features:
|
|
- MIDI notes can be added to the keymap
|
|
- Octave shift and transpose
|
|
- Virtual sustain, portamento, and modulation wheel
|
|
- etc.
|
|
*/
|
|
//#define MIDI_ADVANCED
|
|
|
|
/* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
|
|
//#define MIDI_TONE_KEYCODE_OCTAVES 2
|
|
|
|
#define VIAL_KEYBOARD_UID {0x7B, 0xA5, 0x7F, 0x5C, 0x13, 0x4C, 0x8D, 0x69}
|
|
#define DYNAMIC_KEYMAP_LAYER_COUNT 8
|
|
|
|
// Unlock combo is set to 'Escape' + 'Space'
|
|
#define VIAL_UNLOCK_COMBO_ROWS { 0, 3 }
|
|
#define VIAL_UNLOCK_COMBO_COLS { 0, 5 }
|