Fix various typos

This commit is contained in:
Sam Chesney
2017-01-31 18:39:06 +00:00
parent 9b4fa7b352
commit 342bf64c21
3 changed files with 3 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ sc_usb_audio Change Log
7.0.2
-----
- ADDED: I2S output down-sampling (I2S_DOWNSAMPLE_FACTOR_OUT)
- ADDED: I2S output up-sampling (I2S_UPSAMPLE_FACTOR_OUT)
- CHANGE: Rename I2S input down-sampling (I2S_DOWNSAMPLE_FACTOR to I2S_DOWNSAMPLE_FACTOR_IN)
7.0.1

View File

@@ -810,7 +810,7 @@ int i2sOutUpsamplingCounter = 0;
#if (NUM_PDM_MICS > 0)
if ((I2S_DOWNSAMPLE_FACTOR_IN - 1) == i2sInDownsamplingCounter)
{
/* Get samples from PDM->PCM comverter */
/* Get samples from PDM->PCM converter */
c_pdm_pcm <: 1;
master
{

View File

@@ -143,7 +143,7 @@
#define I2S_UPSAMPLE_FACTOR_OUT (1)
#else
#if (I2S_UPSAMPLE_FACTOR_OUT != 3) && (I2S_UPSAMPLE_FACTOR_OUT != 1)
#error Unsupported I2S input upsampling configuration
#error Unsupported I2S output upsampling configuration
#endif
#endif