Hello, I use DSK6711 and I would like to program EDMA data transfers from/to the on board AD535 audio codec. I would be very grateful if someone could send me some C code example to do so. I am aware CSS contains some of this examples, but I dont want to use CSS. Many Thanks Eduard. |
|
AD535 audio codec and (E)DMA
Started by ●February 10, 2003
Reply by ●February 11, 20032003-02-11
Dear All, I came across this build which is meant to use AD535 audio codec with EDMA data transfers. Unfortunately, it doesn't seem to be working for me... If anyone there was able to spot what is wrong, I would really appreciate you could drop me a line. Thanks, Eduard E Oliver <> wrote: Hello, I use DSK6711 and I would like to program EDMA data transfers from/to the on board AD535 audio codec. I would be very grateful if someone could send me some C code example to do so. I am aware CSS contains some of this examples, but I dont want to use CSS. Many Thanks Eduard. _____________________________________ Note: If you do a simple "reply" with your email client, only the author of this message will receive your answer. You need to do a "reply all" if you want your answer to be distributed to the entire group. _____________________________________ About this discussion group: To Join: Send an email to To Post: Send an email to To Leave: Send an email to Archives: http://www.yahoogroups.com/group/c6x Other Groups: http://www.dsprelated.com ">http://docs.yahoo.com/info/terms/ , Dear All, I came across this build which is meant to use AD535 audio codec with EDMA data transfers. Unfortunately, it doesn't seem to be working for me... If anyone there was able to spot what is wrong, I would really appreciate you could drop me a line. Thanks, Eduard E Oliver <> wrote: Hello, I use DSK6711 and I would like to program EDMA data transfers from/to the on board AD535 audio codec. I would be very grateful if someone could send me some C code example to do so. I am aware CSS contains some of this examples, but I dont want to use CSS. Many Thanks Eduard. _____________________________________ Note: If you do a simple "reply" with your email client, only the author of this message will receive your answer. You need to do a "reply all" if you want your answer to be distributed to the entire group. _____________________________________ About this discussion group: To Join: Send an email to To Post: Send an email to To Leave: Send an email to Archives: http://www.yahoogroups.com/group/c6x Other Groups: http://www.dsprelated.com ">http://docs.yahoo.com/info/terms/ | |||
| |||
|
Reply by ●February 13, 20032003-02-13
If you are interested in using the on-board audio codec AD535 with EDMA
data transfers outside CCS, you can use the software I attached to my previous email: http://groups.yahoo.com/group/c6x/message/1561 The reason why it didn't work is because these two lines were missing from the target initialisation code: #define IER_NMIE 0x00000002 #define CSR_GIE 0x00000001 /* Enable global interrupts now. */ IER |= 0x00000001 | IER_NMIE; CSR |= CSR_GIE; Regards, Eduard E Oliver <> wrote: Dear All, I came across this build which is meant to use AD535 audio codec with EDMA data transfers. Unfortunately, it doesn't seem to be working for me... If anyone there was able to spot what is wrong, I would really appreciate you could drop me a line. Thanks, Eduard E Oliver <> wrote: Hello, I use DSK6711 and I would like to program EDMA data transfers from/to the on board AD535 audio codec. I would be very grateful if someone could send me some C code example to do so. I am aware CSS contains some of this examples, but I dont want to use CSS. Many Thanks Eduard. _____________________________________ Note: If you do a simple "reply" with your email client, only the author of this message will receive your answer. You need to do a "reply all" if you want your answer to be distributed to the entire group. _____________________________________ About this discussion group: To Join: Send an email to To Post: Send an email to To Leave: Send an email to Archives: http://www.yahoogroups.com/group/c6x Other Groups: http://www.dsprelated.com ">http://docs.yahoo.com/info/terms/ , Dear All, I came across this build which is meant to use AD535 audio codec with EDMA data transfers. Unfortunately, it doesn't seem to be working for me... If anyone there was able to spot what is wrong, I would really appreciate you could drop me a line. Thanks, Eduard E Oliver <> wrote: Hello, I use DSK6711 and I would like to program EDMA data transfers from/to the on board AD535 audio codec. I would be very grateful if someone could send me some C code example to do so. I am aware CSS contains some of this examples, but I dont want to use CSS. Many Thanks Eduard. _____________________________________ Note: If you do a simple "reply" with your email client, only the author of this message will receive your answer. You need to do a "reply all" if you want your answer to be distributed to the entire group. _____________________________________ About this discussion group: To Join: Send an email to To Post: Send an email to To Leave: Send an email to Archives: http://www.yahoogroups.com/group/c6x Other Groups: http://www.dsprelated.com ">http://docs.yahoo.com/info/terms/ --------------------------------- --------------------------------- |