diff options
author | 2017-07-23 17:17:23 -0400 | |
---|---|---|
committer | 2017-07-28 10:45:34 -0400 | |
commit | 78f79ca6ccf6c24a712a632c2a6a995d6e111dc2 (patch) | |
tree | 2fe2d1b800bf3a7ce22f19a95031a5a66d9d60ed /keyboards/DeltaSplit75/ProtoSplit/ProtoSplit.c | |
parent | f1dbf72e09363efa1bc8703f0215af41803d0e80 (diff) | |
download | qmk_firmware-78f79ca6ccf6c24a712a632c2a6a995d6e111dc2.tar.gz |
Removed old folder
Diffstat (limited to 'keyboards/DeltaSplit75/ProtoSplit/ProtoSplit.c')
-rw-r--r-- | keyboards/DeltaSplit75/ProtoSplit/ProtoSplit.c | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/keyboards/DeltaSplit75/ProtoSplit/ProtoSplit.c b/keyboards/DeltaSplit75/ProtoSplit/ProtoSplit.c deleted file mode 100644 index 1199257d0..000000000 --- a/keyboards/DeltaSplit75/ProtoSplit/ProtoSplit.c +++ /dev/null @@ -1,32 +0,0 @@ -#include "DeltaSplit75.h" - -#ifdef AUDIO_ENABLE - float tone_startup[][2] = SONG(STARTUP_SOUND); - float tone_goodbye[][2] = SONG(GOODBYE_SOUND); -#endif - -void matrix_init_kb(void) { - - #ifdef AUDIO_ENABLE - _delay_ms(20); // gets rid of tick - PLAY_NOTE_ARRAY(tone_startup, false, 0); - #endif - - // // green led on - // DDRD |= (1<<5); - // PORTD &= ~(1<<5); - - // // orange led on - // DDRB |= (1<<0); - // PORTB &= ~(1<<0); - - matrix_init_user(); -}; - -void shutdown_user(void) { - #ifdef AUDIO_ENABLE - PLAY_NOTE_ARRAY(tone_goodbye, false, 0); - _delay_ms(150); - stop_all_notes(); - #endif -} |