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 hiramlee

  1. H

    problem about pointer

    many thanks
  2. H

    problem about pointer

    ah! This function add the string t to the end of string s; so, here should be assignment operator "=", not "==". Thanks all the way
  3. H

    problem about pointer

    int strcat(char *s, char *t){ while(*(s++)!='\0'); s--; while(*(s++)=*(t++)); return 0; } Description Resource Path Location Type Possible assignment in condition '*(s++)=*(t++)' strcat.c /strcat line 23 Semantic Error Description Resource Path Location Type suggest parentheses...
  4. H

    best books about fpga

    https://bbs.21ic.com/forum.php?mod=viewthread&tid=437045&fromuid=809790 https://bbs.21ic.com/forum.php?mod=viewthread&tid=437045&fromuid=809790
  5. H

    As a greenhand in the field of RF, what should i do first and then?Any suggestion?

    I begin to learn about RF not long before, by reading few books,RF Ciruit Design Theory and Application(Reinhold Ludwig),RF microelectronics(Razavi) and microwave engineer. I should i do now except reading the three handbooks, some more? Are there some forum or website about the RF ? Should i...
  6. H

    Best university in the field of RF and microwave

    Thank you. Thank you very much. what you told me is so inspiring. I'm sure what to do now.
  7. H

    Best university in the field of RF and microwave

    Actually, i prefer a American or Canada university . Thank you for your reply .
  8. H

    Best university in the field of RF and microwave

    Hey, everybody in the forum. I'm want some suggestions in the choice of university for further study. Now , I am a student from UESTC (university of electronics science and technology of China) and I will receive my Master degree three years later ,then I'll apply for further study in the field...
  9. H

    How the transistor work?

    Many thanks for your help. Now,I guess the current outstrip its maxim value . Any transistor has a limited load capacity. The value equals to output voltage Ve divided by maxim output current . So when the load smaller than the minimum as mentioned , we can see what have happened.
  10. H

    How the transistor work?

    when the emitter follower overload, the output get truncated In a design of emitter follower, when Rl get smaller to less 1k, the output Vo is truncated. The schematic as follow: The simulation result of Pspice as follow: As I know , in a emitter follower , Vb is fixed according to...
  11. H

    How the transistor work?

    I design a very simply transistor circuit, and we all know about it. The frequency of input signal is 1KHZ ,and magtitude is 1Vp-p.when the load resistor Rl5=100K, the Pspice give me such a result as below: 在输入为1KHZ,1Vp-p情况下,在100KHZ负载情况下该电路的仿真效果图: **broken link removed** Obviously ,the output...
  12. H

    xilinx fir ip core ,and why it has a xxxxx output

    //version1.1 //使用标准库函数void *memchr(const void *str, int c, size_t n); #include<stdio.h> #include<string.h> #define LEN 80 //maximum of your string int main() { char string[LEN]; char ch; char * addr; printf("please enter a string:\n"); while(gets(string)&&string[0]!='\0') {...
  13. H

    xilinx fir ip core ,and why it has a xxxxx output

    Long time since last login. I have to say the data flow from CIC to HB ,then to FIR have been such a nightmare for me. i use the CIC .HB and FIR filter in my project of DDC. the sampling data go through mixer,the to the three filter above. the word length to cic is 20bits, output data is 20...
  14. H

    xilinx fir ip core ,and why it has a xxxxx output

    Thanks a lot. The signal 'nd' appeared when i change the configuration from nonsymmetric to symmtric. but the rfd_fir are set,,that means it wait for a data input. but at this moment the rdy_cic isn't necessarily set as a result of dfferent latency, so the data to fir may be invalid. That's why...
  15. H

    xilinx fir ip core ,and why it has a xxxxx output

    Many thanks for your help. The signal mention above is used to make a connection between two component in my project , cic_filter and hb_filter. To some reason i have to store the result of cic filter and then, wait until it's request by the hb filter. For the first time ,i used two register...

Part and Inventory Search

Back
Top