diff options
author | peepeetee <43021794+peepeetee@users.noreply.github.com> | 2022-02-01 10:11:18 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-31 18:11:18 -0800 |
commit | 8515d12e2088fb8a3284a3ae239cc4fc945643e7 (patch) | |
tree | 2cb6c2067669c8626be3c4021b2e405028e236d7 /keyboards/ergodash/rev1/rev1.c | |
parent | 658d211804adfb9af31ea246a1e1e786ecab2a9f (diff) | |
download | qmk_firmware-8515d12e2088fb8a3284a3ae239cc4fc945643e7.tar.gz qmk_firmware-8515d12e2088fb8a3284a3ae239cc4fc945643e7.zip |
[Keyboard] move @omkbd 's boards to /omkbd (#16116)
Diffstat (limited to 'keyboards/ergodash/rev1/rev1.c')
-rw-r--r-- | keyboards/ergodash/rev1/rev1.c | 32 |
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 -} |