don't let timer1 exist without b5 being enabled

This commit is contained in:
Jack Humbert 2017-06-27 15:28:13 -04:00
parent ea7590c894
commit 7d28a417c0
2 changed files with 4 additions and 0 deletions

View File

@ -49,6 +49,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#define BACKLIGHT_PIN B7 #define BACKLIGHT_PIN B7
#define BACKLIGHT_BREATHING #define BACKLIGHT_BREATHING
#define C6_AUDIO
/* COL2ROW or ROW2COL */ /* COL2ROW or ROW2COL */
#define DIODE_DIRECTION COL2ROW #define DIODE_DIRECTION COL2ROW

View File

@ -442,6 +442,7 @@ ISR(TIMER3_COMPA_vect)
} }
#endif #endif
#ifdef B5_AUDIO
ISR(TIMER1_COMPA_vect) ISR(TIMER1_COMPA_vect)
{ {
#if defined(B5_AUDIO) && !defined(C6_AUDIO) #if defined(B5_AUDIO) && !defined(C6_AUDIO)
@ -572,6 +573,7 @@ ISR(TIMER1_COMPA_vect)
} }
#endif #endif
} }
#endif
void play_note(float freq, int vol) { void play_note(float freq, int vol) {