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 gn.times

  1. G

    Single supply active filter design with gain

    Can I use a 2.5V voltage regulator IC (such as LM336-2.5) for 'REF' supply? My input signal voltage range will be between 1V to 2V - - - Updated - - - In the 1st schematic, the capacitor C2A is connected between (+) terminal of opamp and "REF" where I will connect a 2.5V voltage regulator o/p...
  2. G

    Single supply active filter design with gain

    Hi, I want to design an active Sallen-Key 2nd order low pass filter with single supply opamp. I am using OP213 from AD with +5V and 0V as the supply voltage. Cutt-off frequency: 2kHz Gain: 10 (V/V) I designed the below circuit using AD filter design tool and connected 2.5V for Vref from a...
  3. G

    Morse code to ASCII converter using vhdl

    I want to design the digital circuit in such a way that it should take value of X automatically which means even if the morse code symbol rate varies, the detector should detect the dot, dash, character space and word space correctly
  4. G

    Morse code to ASCII converter using vhdl

    I'm also using the same approach (adding 0 for dot and 1 for dash to a shift register with an initial value of 00000001). But the problem is with detecting counts of dash and dots. Here is the program I have written as of now: library ieee; use ieee.std_logic_1164.all; use...
  5. G

    Morse code to ASCII converter using vhdl

    Algorithm for detecting dot and dash which comes at the input at variable symbol rate. Any state machine kind of algorithm
  6. G

    Morse code to ASCII converter using vhdl

    I want to implement a Morse code to ASCII converter in vhdl and then to transmit that ASCII character to PC terminal through UART. I have completed the UART part. But i don't know how to implement the converter part. The problem is with varying symbol rate of input Morse code. I want to detect...
  7. G

    Different Branching Factors

    What is the difference between AVERAGE branching factor and EFFECTIVE branching factor?
  8. G

    Query reg Remote Keyless Entry in cars

    Hi Could someone give following details regarding Communication protocol used in Remote Keyless Entry in cars: Operating frequency Range Protocol Licensing required? The range of current system is upto 100m. But if I want to increase the range to 1000m for some other applications, is it...
  9. G

    Reflectivity vs Object Size

    But in many places I have read that the wave will not be reflected since its wavelength is larger than the object and wave will be reflected since its wavelength is smaller than than the size of object. But I don't know the technical background. Ex: Millimeter wave penetration through rain...
  10. G

    Recognising vehicles in same and opposite direction using FMCW Radar

    Whether Doppler frequency shift for both the cases are same since both are approaching target with same relative velocity?
  11. G

    Recognising vehicles in same and opposite direction using FMCW Radar

    Most of us knew that FMCW Radar is being used in Automotive applications to measure distance and relative velocity of the vehicle going in front. I'm not able to understand how the oncoming vehicle (vehicle coming in opposite direction of the subject vehicle) is differentiated from vehicle...
  12. G

    Reflectivity vs Object Size

    For example, take the two below situations: 1) A radar wave of wavelength 5mm is striking a perfect metal sphere of diameter 3mm 2) the same radar wave hits a perfect metal sphere of diameter 8mm In which case/cases the radar wave will get reflected and why?
  13. G

    Reflectivity vs Object Size

    Guys, can yu please help me in explaining the relation between object size and wavelength of EM wave with respect to reflective property of the wave when it strikes the object. Is it like if the wavelength is smaller than the object size then the wave will be reflected and vice versa?
  14. G

    TSOP1738 infrared sensor

    Mate I told about real time blind spot detection system that are being currently deployed in automobiles.
  15. G

    Help with filter design in C

    // Return RC low-pass filter output samples, given input samples, // time interval dt, and time constant RC function lowpass(real[0..n] x, real dt, real RC) var real[0..n] y var real α := dt / (RC + dt) y[0] := x[0] for i from 1 to n y[i] := α * x[i] + (1-α) * y[i-1]...

Part and Inventory Search

Back
Top