Change project makefiles so that the current target settings and not just the board selection is printed during the build process.

Fix warning in AudioOutput demos when AUDIO_OUT_STEREO output mode is selected.
This commit is contained in:
Dean Camera 2009-07-28 13:53:52 +00:00
parent e426463355
commit 3472af91a5
48 changed files with 968 additions and 1735 deletions

View file

@ -103,8 +103,10 @@ void ProcessNextSample(void)
int8_t LeftSample_8Bit = (LeftSample_16Bit >> 8);
int8_t RightSample_8Bit = (RightSample_16Bit >> 8);
#if !defined(AUDIO_OUT_STEREO)
/* Mix the two channels together to produce a mono, 8-bit sample */
int8_t MixedSample_8Bit = (((int16_t)LeftSample_8Bit + (int16_t)RightSample_8Bit) >> 1);
#endif
#if defined(AUDIO_OUT_MONO)
/* Load the sample into the PWM timer channel */