Remove unnecessary audio code from orthodox (#2076)

* Remove unnecessary startup/shutdown code

* Leave functions intact

* Update rev1.c
This commit is contained in:
Drashna Jaelre 2017-12-02 20:59:17 -08:00 committed by Jack Humbert
parent 1548f4c24f
commit 8cac6088c6
1 changed files with 7 additions and 25 deletions

View File

@ -21,33 +21,15 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "orthodox.h" #include "orthodox.h"
#ifdef AUDIO_ENABLE
float tone_startup[][2] = SONG(STARTUP_SOUND);
float tone_goodbye[][2] = SONG(GOODBYE_SOUND);
#endif
void matrix_init_kb(void) { void matrix_init_kb(void) {
#ifdef AUDIO_ENABLE //// // green led on
_delay_ms(20); // gets rid of tick //// DDRD |= (1<<5);
PLAY_SONG(tone_startup); //// PORTD &= ~(1<<5);
#endif
// // green led on //// // orange led on
// DDRD |= (1<<5); //// DDRB |= (1<<0);
// PORTD &= ~(1<<5); //// PORTB &= ~(1<<0);
// // orange led on matrix_init_user();
// 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
}