diff options
author | IBNobody <ibnobody@gmail.com> | 2016-04-17 02:27:21 +0200 |
---|---|---|
committer | IBNobody <ibnobody@gmail.com> | 2016-04-17 02:27:21 +0200 |
commit | b5c22ab5b5b77d5e21cc4145831608eed6756ad7 (patch) | |
tree | c206824395556a388a5ce11fde030e86803c36a3 /keyboard/atomic | |
parent | 9d4bfc1bcf9a93b25ce4f7c32d8f3db12c85c23b (diff) | |
download | qmk_firmware-b5c22ab5b5b77d5e21cc4145831608eed6756ad7.tar.gz qmk_firmware-b5c22ab5b5b77d5e21cc4145831608eed6756ad7.tar.xz |
Merging with QMK main to fix audio issues
Diffstat (limited to 'keyboard/atomic')
-rw-r--r-- | keyboard/atomic/keymaps/pvc/keymap.c | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/keyboard/atomic/keymaps/pvc/keymap.c b/keyboard/atomic/keymaps/pvc/keymap.c index 7abd7f4f7..189da16c4 100644 --- a/keyboard/atomic/keymaps/pvc/keymap.c +++ b/keyboard/atomic/keymaps/pvc/keymap.c @@ -3,8 +3,10 @@ #ifdef AUDIO_ENABLE #include "audio.h" +#include "musical_notes.h" #endif + #define _QW 0 #define _LW 1 #define _RS 2 @@ -82,10 +84,18 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { float tone_lw[][2] = { - {440.0*pow(2.0,(59)/12.0), 8}, - {440.0*pow(2.0,(60)/12.0), 8}, - {0, 4}, - {440.0*pow(2.0,(67)/12.0), 16} +Q_NOTE(_C4 ) , +Q_NOTE(_CS4 ) , +Q_NOTE(_D4 ) , +Q_NOTE(_DS4 ) , +Q_NOTE(_E4 ) , +Q_NOTE(_F4 ) , +Q_NOTE(_FS4 ) , +Q_NOTE(_G4 ) , +Q_NOTE(_GS4 ) , +Q_NOTE(_A4 ) , +Q_NOTE(_AS4 ) , +Q_NOTE(_B4 ) , }; float tone_rs[][2] = { @@ -158,6 +168,7 @@ void update_quad_layer(uint8_t layer1, uint8_t layer2, uint8_t layer3, uint8_t l const uint16_t PROGMEM fn_actions[] = { }; +#define ARRAY_SIZE(x) ((sizeof x) / (sizeof *x)) const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) { @@ -167,7 +178,8 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) if (record->event.pressed) { #ifdef AUDIO_ENABLE println("PlayNotes LW"); - play_notes(&tone_lw, 4, false); + print_val_hex32(ARRAY_SIZE(tone_lw)); + play_notes(&tone_lw, 12, false); #endif layer_on(_LW); update_tri_layer(_LW, _RS, _FN); |