aboutsummaryrefslogtreecommitdiff
path: root/keyboard/preonic/keymaps/default/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboard/preonic/keymaps/default/keymap.c')
-rw-r--r--keyboard/preonic/keymaps/default/keymap.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/keyboard/preonic/keymaps/default/keymap.c b/keyboard/preonic/keymaps/default/keymap.c
index 392197f1d..784670784 100644
--- a/keyboard/preonic/keymaps/default/keymap.c
+++ b/keyboard/preonic/keymaps/default/keymap.c
@@ -60,13 +60,9 @@ const uint16_t PROGMEM fn_actions[] = {
60 60
61float start_up[][2] = { 61float start_up[][2] = {
62 {440.0*pow(2.0,(67)/12.0), 600}, 62 {440.0*pow(2.0,(67)/12.0), 600},
63 {0, 50},
64 {440.0*pow(2.0,(64)/12.0), 400}, 63 {440.0*pow(2.0,(64)/12.0), 400},
65 {0, 50},
66 {440.0*pow(2.0,(55)/12.0), 400}, 64 {440.0*pow(2.0,(55)/12.0), 400},
67 {0, 50},
68 {440.0*pow(2.0,(60)/12.0), 400}, 65 {440.0*pow(2.0,(60)/12.0), 400},
69 {0, 50},
70 {440.0*pow(2.0,(64)/12.0), 1000}, 66 {440.0*pow(2.0,(64)/12.0), 1000},
71}; 67};
72 68
@@ -88,9 +84,9 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
88 return MACRO_NONE; 84 return MACRO_NONE;
89}; 85};
90 86
91void * matrix_init_user(void) { 87void matrix_init_user(void) {
92#ifdef AUDIO_ENABLE 88#ifdef AUDIO_ENABLE
93 init_notes(); 89 init_notes();
94 play_notes(&start_up, 9, false); 90 play_notes(&start_up, 5, false);
95#endif 91#endif
96} 92}