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 luben111

  1. L

    STM32 Serial Port Control with LabView

    Use key press / control change events in LabView and send the data over UART only during the event. Ideally you should put the whole VISA functionality into separate VI or class and talk to it with custom events or queues. If you don't do this you may experience freezing the screen or other...
  2. L

    Measure Light Intensity in Lux or Lumen with IMAQ Light meter in LabVIEW

    Hi, the mean intensity you get from the acquired image is correlated with the light intensity. Depend on the camera you use you can calculate the light intensity, ensure the camera auto exposure is turned off. Getting the formula to calculate the light intensity in Lux or Lumens could be very...
  3. L

    [SOLVED] How to connect GSM UART with two different devices

    The best approach is to add UART bridge with two circular FIFO inside to ensure that no data was lost. Simple Atmel Mcu can do the job for you, if there are not enough UARTs inside - make software UARTs
  4. L

    How can we send multiple bytes via UART?

    Use circular buffers for UART sending/receiving - without them there is always a chance that some byte will be lost.
  5. L

    Capacitance between human body and all 110-V wiring in a 10'x10' room

    It's about 20 to 100pF depend on the environment (more metal objects around - 100pF)
  6. L

    use C to program FPGA

    Are you talking about embedding virtual processor core inside the FPGA and use C programming? Altera virtaul processor is called NIOS, some FPGA even have built in ARM multicore processors. Of course KlausST is right - there is no way to program the FPFA logic with C language, VHDL is...
  7. L

    I am new to NIOS II. Need help for my requirement.

    To get working Ethernet IP you need the full (subscribed) version of Quartus + IP . When you buy the Quartus from some Altera dealer you can also get detailed information and support. The Altera dealers can answer many of your questions and also support your development, they can also connect...
  8. L

    I am new to NIOS II. Need help for my requirement.

    There is special Altera IP for Ethernet (unfortunately paid), NIOS is mainly used to load the registers (IP address, timings, etc.) and to handle the communications on higher level. With this Ethernet IP you could achieve 1Gb/s data transfers even on much smaller FPGAs.
  9. L

    soldering flexible pcb

    Re: soldering flexiable pcb Hi, What you have is flexible PCB with silver paint tracks and crimped end connectors, I used such connectors for capacitive keyboards many years ago. So changing the connector will require to "un crimp" the terminals and crimp the new terminals. Using soldering iron...
  10. L

    Metals touching, produce EM waves

    It's the thermoelectric effect https://en.wikipedia.org/wiki/Thermoelectric_effect
  11. L

    LabVIEW: Magnitude and Phase of 1st Harmonic

    Use the FFT module and take the element from the output array which corresponds to the first harmonic
  12. L

    Detection of wireless cmmunication parameter using Labview

    I never played with UDP but it should be simple: 1. On the remote module you create the packet of data for sending over UDP. Each variable should go into some fixed place in the packet (for example temperature - bytes 10..18, time - bytes 19..27. etc.) 2. Send the packets from the module by...
  13. L

    Replacement PIC With AVR

    You can use XMega parts with big success. PIC controllers divide the clock on 4 to execute instructions (so 20 MHz clock results in 5 MIPS performance) where AVR parts use directly the clock - 20 MHZ results in 20 MIPS. So even smaller AVR controllers like ATMEGA88 which run on 20 MHz can...
  14. L

    How to calculate beat signal frequency from delay?

    Hi FvM I agree with you - in case of fixed frequency he needs just to check for Doppler radar for beating frequency https://en.wikipedia.org/wiki/Doppler_radar But in case of fixed frequency the only one thing he could get from beating frequency is the relative speed of the object. In case of...
  15. L

    How to calculate beat signal frequency from delay?

    See this article - it has the formula and good explanation

Part and Inventory Search

Back
Top