Other Parts Discussed in Thread: OMAPL138
Hello
I have a question regarding mcaspPlayBk code that is present in starterware of C6748 LCDK.
I want to transfer 2 bytes per sample instead of four bytes for which the mcaspPlayBk code is
designed for.
But when I modify
#define BYTES_PER_SAMPLE ((WORD_SIZE >> 3) \
* NUM_I2S_CHANNELS)
to
#define BYTES_PER_SAMPLE ((WORD_SIZE >> 4) \
* NUM_I2S_CHANNELS) (for 2 two bytes per samples)
Then no audio I can hear.
Please tell me in your mcaspPlayBk code, if I want to modify "BYTES_PER_SAMPLE" from 4 to 2 for my application, then what parameters also I need to change to make this code work correctly.
Thanks