audio on by default

This commit is contained in:
Jack Humbert 2016-04-15 23:46:35 -04:00
parent 0faa18eab9
commit c294636c66
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ void eeconfig_init(void)
eeprom_write_byte(EECONFIG_BACKLIGHT, 0);
#endif
#ifdef AUDIO_ENABLE
eeprom_write_byte(EECONFIG_AUDIO, 0);
eeprom_write_byte(EECONFIG_AUDIO, 0xFF); // On by default
#endif
}