/* Audio sample is ADC value scaled to fit the entire range */\r
int16_t AudioSample = ((SAMPLE_MAX_RANGE / ADC_MAX_RANGE) * ADC_GetResult());\r
\r
-#if defined(MICROPHONE_BIASED_TO_HALF_RAIL)\r
+ #if defined(MICROPHONE_BIASED_TO_HALF_RAIL)\r
/* Microphone is biased to half rail voltage, subtract the bias from the sample value */\r
AudioSample -= (SAMPLE_MAX_RANGE / 2));\r
-#endif\r
+ #endif\r
\r
Audio_Device_WriteSample16(&Microphone_Audio_Interface, AudioSample);\r
}\r