Important changes to forums and questions
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
I try to get working aic23 sound chip, but canot get working interupt.
// Turn on I2S interrupts in NVIC
// rx int, rx depth 4, tx depth 4
LPC_I2S->I2SIRQ = (1<<0) | (4<<8) | (4<<16);
NVIC_EnableIRQ(I2S_IRQn);
and later :
void I2S_IRQHandler(void){
.....
with scope check that all are corect.