feat: new startup / reset chimes (#352)

* feat: new startup / reset chimes

* Remove sound defines in default keymap

* fix: check for startup/goodbye song definition

* fix: move chimes definition to keyboard's post_config.h

Co-authored-by: Drashna Jael're <drashna@live.com>
This commit is contained in:
Florian Didron
2022-07-13 11:05:47 +09:00
committed by GitHub
parent 764ac89d8d
commit d3c3625aaf
6 changed files with 21 additions and 4 deletions

View File

@@ -166,3 +166,4 @@
#define AUDIO_INIT_DELAY
#define TAPPING_TOGGLE 1

View File

@@ -19,4 +19,3 @@
#pragma once
#define ORYX_CONFIGURATOR
#define STARTUP_SONG SONG(ODE_TO_JOY)

View File

@@ -0,0 +1,9 @@
#ifdef AUDIO_ENABLE
#ifndef STARTUP_SONG
# define STARTUP_SONG SONG(E__NOTE(_DS5), E__NOTE(_D5), E__NOTE(_AS4), Q__NOTE(_F5))
#endif
#ifndef GOODBYE_SONG
# define GOODBYE_SONG SONG(E__NOTE(_D5), E__NOTE(_F5), E__NOTE(_C5), Q__NOTE(_AS4))
#endif
#endif