summaryrefslogtreecommitdiffstats
path: root/keyboards/ergodash/rev1/rev1.c
diff options
context:
space:
mode:
authorpeepeetee <43021794+peepeetee@users.noreply.github.com>2022-02-01 10:11:18 +0800
committerGitHub <noreply@github.com>2022-01-31 18:11:18 -0800
commit8515d12e2088fb8a3284a3ae239cc4fc945643e7 (patch)
tree2cb6c2067669c8626be3c4021b2e405028e236d7 /keyboards/ergodash/rev1/rev1.c
parent658d211804adfb9af31ea246a1e1e786ecab2a9f (diff)
[Keyboard] move @omkbd 's boards to /omkbd (#16116)
Diffstat (limited to 'keyboards/ergodash/rev1/rev1.c')
-rw-r--r--keyboards/ergodash/rev1/rev1.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/keyboards/ergodash/rev1/rev1.c b/keyboards/ergodash/rev1/rev1.c
deleted file mode 100644
index 00f81cae11..0000000000
--- a/keyboards/ergodash/rev1/rev1.c
+++ /dev/null
@@ -1,32 +0,0 @@
-#include "ergodash.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_SONG(tone_startup);
- #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_SONG(tone_goodbye);
- _delay_ms(150);
- stop_all_notes();
- #endif
-}