/* Mix the two channels together to produce a mono, 8-bit sample */\r
int8_t MixedSample_8Bit = (((int16_t)LeftSample_8Bit + (int16_t)RightSample_8Bit) >> 1);\r
\r
/* Mix the two channels together to produce a mono, 8-bit sample */\r
int8_t MixedSample_8Bit = (((int16_t)LeftSample_8Bit + (int16_t)RightSample_8Bit) >> 1);\r
\r
#if defined(AUDIO_OUT_MONO)\r
/* Load the sample into the PWM timer channel */\r
OCR3A = ((uint8_t)MixedSample_8Bit ^ (1 << 7));\r
#if defined(AUDIO_OUT_MONO)\r
/* Load the sample into the PWM timer channel */\r
OCR3A = ((uint8_t)MixedSample_8Bit ^ (1 << 7));\r
#elif defined(AUDIO_OUT_PORTC)\r
/* Load the 8-bit mixed sample into PORTC */\r
PORTC = MixedSample_8Bit;\r
#elif defined(AUDIO_OUT_PORTC)\r
/* Load the 8-bit mixed sample into PORTC */\r
PORTC = MixedSample_8Bit;\r