aboutsummaryrefslogtreecommitdiff
path: root/keyboards/helix/rev1/rev1.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/helix/rev1/rev1.c')
-rw-r--r--keyboards/helix/rev1/rev1.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/keyboards/helix/rev1/rev1.c b/keyboards/helix/rev1/rev1.c
index 950e4eec3..d7ea9b723 100644
--- a/keyboards/helix/rev1/rev1.c
+++ b/keyboards/helix/rev1/rev1.c
@@ -1,9 +1,5 @@
1#include "helix.h" 1#include "helix.h"
2 2
3#ifdef AUDIO_ENABLE
4 float tone_startup[][2] = SONG(STARTUP_SOUND);
5 float tone_goodbye[][2] = SONG(GOODBYE_SOUND);
6#endif
7 3
8#ifdef SSD1306OLED 4#ifdef SSD1306OLED
9void led_set_kb(uint8_t usb_led) { 5void led_set_kb(uint8_t usb_led) {
@@ -14,11 +10,6 @@ void led_set_kb(uint8_t usb_led) {
14 10
15void matrix_init_kb(void) { 11void matrix_init_kb(void) {
16 12
17 #ifdef AUDIO_ENABLE
18 _delay_ms(20); // gets rid of tick
19 PLAY_SONG(tone_startup);
20 #endif
21
22 // // green led on 13 // // green led on
23 // DDRD |= (1<<5); 14 // DDRD |= (1<<5);
24 // PORTD &= ~(1<<5); 15 // PORTD &= ~(1<<5);
@@ -29,11 +20,3 @@ void matrix_init_kb(void) {
29 20
30 matrix_init_user(); 21 matrix_init_user();
31}; 22};
32
33void shutdown_kb(void) {
34 #ifdef AUDIO_ENABLE
35 PLAY_SONG(tone_goodbye);
36 _delay_ms(150);
37 stop_all_notes();
38 #endif
39}