1
0
Fork 0

adds a sequencer to the music mode (#330)

* implements leader key for planck experimental

* allows override of leader timeout

* adds ability to use the leader key in seq

* fixes leader keycode

* adds chording prototype

* fixes keycode detection

* moves music mode to quantum.c

* disables chording by default

* adds music sequencer functionality

* implements audio/music functions in quantum.c

* Merge branch 'master' into process-record
This commit is contained in:
Jack Humbert 2016-05-15 00:40:59 -04:00
parent 1a8c0dd22d
commit 15719f3574
5 changed files with 123 additions and 82 deletions

View file

@ -478,12 +478,11 @@ void increase_tempo(uint8_t tempo_change) {
// Override these functions in your keymap file to play different tunes on
// startup and bootloader jump
__attribute__ ((weak))
void play_startup_tone()
{
}
void play_startup_tone() {}
__attribute__ ((weak))
void play_goodbye_tone()
{
}
void play_goodbye_tone() {}
__attribute__ ((weak))
void audio_on_callback(void) {}
//------------------------------------------------------------------------------