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 Mr.MEB

  1. M

    Exam help! A loop-gain greater than one

    So what's the answer finally?
  2. M

    Training and Service Manual for Beko chassis 11.1

    beko 11.1 Refrigerator? Washmachine?
  3. M

    Need Matlab code for box muller

    Matlab code Did you try matlab central? https://www.mathworks.com/matlabcentral/
  4. M

    interfacing cell phone camera

    intefacing a sellphone camera You can do it with a pxa270 micro for example. They contain a quick camera capture interface for cell phone cameras. Or if you have a datasheet indicating the output signal, you can make your own device with a CPLD or FPGA that dumps the image to memory. You can...
  5. M

    reading ethernet packets

    Use Ethereal, very pedagogic program.
  6. M

    Numerical Integration in MATLAB/SIMULINK

    Look at the formula and Fig. 5 You forgot to put the gain of Ts. In Simulink it's just a triangle to place beetwen the ZOH and Sum block.
  7. M

    Programming a Monoestable in ladder

    Your PLC's should have special blocs, like delayed relay, pulse suppressor etc.. just look at the programming manual.
  8. M

    Numerical Integration in MATLAB/SIMULINK

    What's the frequency of ZOH? Why aren't you dividing X by Ts? Guess : your sample period is 0.01s
  9. M

    How to write a C program which exchange the bits in a byte?

    void reverse_byte(byte &a) isn't this some C++ with reference arg? I don't think it will work with a non-AnsI C compiler for 8 bit mcu.
  10. M

    Help me select DSP board for MA degree project

    DSP Selection I would like to share my opinion about this subject: You should first try to quantify your processing power requirement: How long (cycles) will my dsp algorithm take to finish? What is the speed needed for AD conversion? What is the interrupt latency in the different...
  11. M

    floating point calculations on fixed point dsp

    Your time critical dsp calculations should be in fixed point (interupt, sampling), so you need convert your floating point parameters in fixed point before. You can make floating code calculations in your non-time critica code sections.l
  12. M

    PXA 270 with 24 bit LCD

    yes as I remember there is only 18bit wide LCD bus coming out from the PXA. The LCD was 24 bit, so we connected the LSB bits of each color to the ground. We chose Sharp. There are 2 kind of LCDs available : one that required extra timing signals which the PXA don't generate (you have to place a...
  13. M

    PXA 270 with 24 bit LCD

    I did finished a project a few weeks before. In fact I was asking myself the same question and have examined the datasheets LCD-Controller and DMA Controller Section. But then We decided to use an OS, it was cheaper (faster) than writing his own LCD interface. You have the choice between Linux...
  14. M

    Fast algorithm for calculating averaging image

    Averaging Image You are complaining that your calculations are takes too long but you don't say how you have implemeted them. As far as I know, you need to do 2-D convolution of your input image with a certain mask. So you should do a lot of matrix operation, look at the assembly code to check...
  15. M

    What's the range of projectile in this task?

    projectile problem it is the projectile problem which as variable g with the altitude. You must replace g with g(h)=... You will also need to know the earth's mass, but that can be found with escape velocity. Try to think with polar coordinate, forget about x.

Part and Inventory Search

Back
Top