Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by Eric Lin

  1. E

    LPC10 Vocoder and Pitch estimation MATLAB code

    lpc-10 I only have LPC10 Vocoder for c.
  2. E

    How to read MP3 file and feed the bit stream data into TI DSP?

    Re: MP3 File format I simulate the mp3's decoder on the c environment. I use the function "fopen,fread,fwrite" to open and decode the encoded mp3 bitstream. You can put the encoded mp3 file down the DSP's SDRAM, and decode them to accord with frame by frame.
  3. E

    Implementing software division in DSP

    See this c code. Word32 L_div_s(Word32 var1, Word32 var2) { Word32 var_out = 0; Word32 iteration; Word32 L_num; Word32 L_denom; if ((var1 > var2) || (var1 < 0) || (var2 < 0)) { printf("Division Error var1=%d var2=%d\n",var1,var2); exit(0); } if (var2...
  4. E

    DSP Applications Using C and the TMS320C6x DSK

    Re: Newbie in DSP You can refer these books. 1. The Scientist and Engineer's Guide to Digital Signal Processing. 2. Digital Signal Processing and Applications with the C6713 and C6416 DSK (Topics in Digital Signal Processing) 3. DSP Applications Using C and the TMS320C6x DSK
  5. E

    Matlab FIR Design question

    Using Kaiserord function. You can run this code. fs = 8000; %Sampling Rate f = [1000 1300 2210 2410]; %PassBand BandWidth a = [0 1 0]; dev = [0.01 0.05 0.01]; [n,Wn,beta,ftype] = kaiserord(f,a,dev,fs); n = n + rem(n,2); b =...
  6. E

    Developing board for TMS320C6711

    Re: TMS320C6711 I only have paper mode "DSP Applications Using C and the TMS320C6x DSK". Sorry.... But you can download this book from this network station. Digital Signal Processing and Applications with the C6713 and C6416 DSK (Topics in Digital Signal Processing)
  7. E

    Developing board for TMS320C6711

    Re: TMS320C6711 You can refer these books. 1. Digital Signal Processing and Applications with the C6713 and C6416 DSK (Topics in Digital Signal Processing) 2. DSP Applications Using C and the TMS320C6x DSK
  8. E

    Looking for Freescale DSP device assembler reference

    Re: assembler reference Could you tell me what is "freescale's dsp device"?? I don't know this item.
  9. E

    acoustic echo cancellation using DSK TMS320c6711

    You can see the attached file.
  10. E

    for help: how does it work about boot loading in C6X ?

    Please refer to the chapter 11 of attached file.
  11. E

    Do you have the standard audio test bitstream MPEGI/II?

    Hello..Everybody... I am implementing the MPEGI/II audio decoder using in C. I had the attached file which included test bitstreams. Do you have more than the standard audio test bitstream MPEGI/II? I need your help. Thanks.
  12. E

    Floating point to Fixed point conversion

    I usually used c environment except design the filter coefficients or simulate the system function. For instance, Porting MP3 Decoder on DSProcessor using assembly language. (1)Floating Point C (2)Discriminating tables,gobal variables,local variables,buffer from floating point c...
  13. E

    How to simulate virtual dolby on a Xilinx FPGA?

    Re: dolby virtual?? i'm looking about virtual dolby information... i'm planning to simulate it on a xilinx fpga... anyone can help?? Dolby Virtual Technologies include PrologI,PrologII,AC3,and Surround. I suggest that you had c source code better to study algorithm and simulate in C...

Part and Inventory Search

Back
Top