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 Arun M

  1. Arun M

    how to load linux kernel image address into boot loader

    If you are using Mini2440 then you may want to refer the user's manual of it.. Refer to page 251 in the following document. http://www.hiteg.com/downloads/mini2440v2/MINI2440v1.pdf.zip
  2. Arun M

    how to load linux kernel image address into boot loader

    Here is the man page for mkImage: https://linux.die.net/man/1/mkimage mkImage is used to create linux image for use with U-Boot Bootloader. Example : mkimage -A arm -C none -O linux -T kernel -d zImage -a 0x00010000 -e 0x00010000 zImage.uimg -a refers to the load address -e refers to the...
  3. Arun M

    Embedded linux Video Training tutorials for beginers

    Though this may be a late reply. I wanted to share the videos that I found very useful to get start with Embedded Linux. Follow the links: https://www.youtube.com/watch?v=6_pugJ0H50U https://www.youtube.com/watch?v=sPraL_k1ZNA https://www.youtube.com/watch?v=UjXGg2UkQRE
  4. Arun M

    Wheelchair Interface

    I think you can use some single board computers like Raspberry Pi , Beagleboard instead of a laptop.
  5. Arun M

    Solar Charge Controller Design - Help Needed!

    Thanks for the reply! That 50V is assumed to be the voltage from PV Cell.I had taken this value just for simulation. Have you used any current sensing, voltage sensing and PI Controller circuit using op amp in your Charge Controller?
  6. Arun M

    Solar Charge Controller Design - Help Needed!

    Hello Everyone! I have started designing a solar charge controller to charge a 12V lead acid battery. Load for the battery will be a dc motor. What I have done till now is that I had designed a Buck - Boost Converter for a output of 14.5V. For the feedback circuit I had to use op amps for...
  7. Arun M

    [SOLVED] Cross-correlation in matlab without using the inbuilt function?

    Check if this is helpful for you! clc; clear all; close all; x=input('Enter the first Sequence : '); h=input('Enter the second sequence : '); n=length(x); m=length(h); k=n+m-1; x=[x zeros(1,k-n)]'; h=wrev(h); h=[h zeros(1,k-m)]'; for i=1:k c(:,i)=circshift(x,i-1); end y=c*h; disp('Correlation...
  8. Arun M

    Help me choosing electives for electrical and electronics engineering!

    In our department they offer the following electives. I am interested in Electrical engineering and automation. Help me choosing the electives (about 5 ) based on its scope Computer Aided Design of Electrical Machines PLC and Distributed Control System High Voltage Engineering HVDC...

Part and Inventory Search

Back
Top