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 whorse

  1. W

    What does embedded system design mean?

    embeded system It's a name to differentiate with general purpose computer system. embedded system is designed for specific application.
  2. W

    what is the best book in microcontroller to begin with?

    microcontroller cookbook by mike james + download Risc CPU is more popular now, try to learn ARM core first, it's the trend.
  3. W

    Problem with MSP430 JTAG: could not find device (or device not supported)

    test pin jtag msp make sure you have shoosed the right device (MSP430 part number) when you connect it.
  4. W

    two questions about vxWorks

    0x3d0002 for the first question, I think it's not a software issue, because the software can not know the existence of hub, the only problem will be the network wire, it's quality is not good enough.
  5. W

    Motorola-S to Intel HEX file converter

    Motorola-S to Hex Winhex can do this also, convert Moto hex file to binary first, then convert to Intel hex.
  6. W

    Can anyone explain the Video Bandwidth of Spectrum Analyzer?

    vertical bandwidth spectrum analyzer Your answer is quite useful, if this filter is not related to bandwidth, then I'm not puzzled about this issue.
  7. W

    Can anyone explain the Video Bandwidth of Spectrum Analyzer?

    resolution bandwidth of spectrum analyzer lets take an example, if the resolution bandwidth is 100khz, video bandwidth is 10khz, then how to tune the video filter to make this bandwidth? I know the Video filter is to make the spectrum smooth, but how this filter be related to a bandwidth? I...
  8. W

    Can anyone explain the Video Bandwidth of Spectrum Analyzer?

    spectrum video bandwidth Still confused after refer to the appnote , Video filter is applied to the spectrum waveform , then what does the bandwidth parameter stand for?
  9. W

    Can anyone explain the Video Bandwidth of Spectrum Analyzer?

    video filter bandwidth I feel a little confused, the Video filter is applied to the spectrum waveform ( not the time domain), right? then how can you tell " the video bandwidth is 100kHz" (for example) ? What is the physical meaning of the video filter's output?
  10. W

    Open Source RTOS for microcontrollers

    freertos internals Go to this page: **broken link removed** there is a link for PIC18x
  11. W

    Formula for calculating nyqist frequency

    nyqist frequency ? I agree claint's idea, the Fs is sample frequency, so Nyquist frequency is 2kHz.
  12. W

    Can anyone explain the Video Bandwidth of Spectrum Analyzer?

    video bandwidth spectrum analyzer and what's the relationship of Video Bandwidth with Resolution Bandwidth?
  13. W

    Convert 26 bit binary to BCD Routine

    bcd routine in c A DEC number is expressed as Dn*10^n+...D2*10^2+D1*10^1+D0*10^0 divide the hex number with 10, the remainder is D0, then use 10 to divide the quotient again, the new remainder is D1, repeat this process, until you get all the digit. It's quite easy to implement this in C, you...
  14. W

    How to connect an LCD (2*16) to Z80

    Z80 and LCD without the interface specification, no one can help you.
  15. W

    Call C function in assembly (PIC 18)

    You'd better avoid calling C function in ASM file, if need, only call the C function without input parameters, cause the input parameters are stored in registers or memory depending on the compiler. To call C function, it's usually call _func for func() routine, maybe you also should declare the...

Part and Inventory Search

Back
Top