summaryrefslogtreecommitdiffstats
path: root/keyboards/deltasplit75/protosplit
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/deltasplit75/protosplit')
-rw-r--r--keyboards/deltasplit75/protosplit/protosplit.c51
-rw-r--r--keyboards/deltasplit75/protosplit/protosplit.h2
2 files changed, 20 insertions, 33 deletions
diff --git a/keyboards/deltasplit75/protosplit/protosplit.c b/keyboards/deltasplit75/protosplit/protosplit.c
index a4b54dcfc..0301f096b 100644
--- a/keyboards/deltasplit75/protosplit/protosplit.c
+++ b/keyboards/deltasplit75/protosplit/protosplit.c
@@ -1,32 +1,19 @@
-#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
-}
+#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) {
+ // // green led on
+ // DDRD |= (1<<5);
+ // PORTD &= ~(1<<5);
+
+ // // orange led on
+ // DDRB |= (1<<0);
+ // PORTB &= ~(1<<0);
+
+ matrix_init_user();
+};
+
diff --git a/keyboards/deltasplit75/protosplit/protosplit.h b/keyboards/deltasplit75/protosplit/protosplit.h
index 136dde64a..5e0c338f4 100644
--- a/keyboards/deltasplit75/protosplit/protosplit.h
+++ b/keyboards/deltasplit75/protosplit/protosplit.h
@@ -1,7 +1,7 @@
#ifndef PROTOSPLIT_H
#define PROTOSPLIT_H
-#include "../deltasplit75.h"
+#include "deltasplit75.h"
//void promicro_bootloader_jmp(bool program);
#include "quantum.h"