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 Koson

  1. K

    FPGA Hardware (PCB) Design

    it's not easy task todo with very high frequency of that FPGA, if you cant design the PCBs to run faster than few hundred MHz , just buy it. in digital world , an 100 MHz means you have to design at least 1GHz (up to 9th harmonics) to make "square" logic not "sine" or you will get bad...
  2. K

    Improving the FPGA design skills

    and the 4th rule for someone : Practice, Patience, Persistence and "Pray" sometime for me too.
  3. K

    Nokia 6100 LCD with CCS C

    nokia 6100 display Thank you for posting valuable code :)
  4. K

    Help me design a 300W DC-DC converter

    DC-DC converter let start from output section. my old 3-phase inverter project made use of power MOSFET like IRFP450 it stand for 14A,500 volts. be carefull about dead time of all power mosfet and make sure there have no floating gate before turning that DC 400V input voltage on, or let...
  5. K

    C8051F060 AD to DA programming

    c8051f060 at first glance look like u have another forever loop inside main forever loop SFRPAGE = LEGACY_PAGE; // Page to sit in for now while (1) { // spin forever SFRPAGE = ADC0_PAGE; ........ EA = 1; // Enable global interrupts while (1); // spin forever } change to SFRPAGE =...
  6. K

    Help me fix an array declaration program in C++

    Array declaration in C++ don't be forget to initial those variable, a[][], before using them in the cout << ...;
  7. K

    Current source for POWER LEDS

    You can use SG3524 switching mode power supply controller for low loss, but it's more complex cct. More complex circuit --> Less power loss = save our planet.
  8. K

    Problem with ISP programming of Atmel 89S52

    ISP Programming did you set buadrate too high?
  9. K

    FFT implemented of SAR imag using FPGA

    FFT implemented using FPGA may be help you https://elibs.blogspot.com/2006/04/asic-soc-hdl.html take a look at "pdf-FFT_Implementation_in_FPGA" regard.
  10. K

    How to make a timer to count 1 miniute

    1 minute = (timer interrupt interval) * (count of some_value) Load 2's complement of some_value in a counter, when counter generate interrupt you got one minute delay. reload it and start timer over again.
  11. K

    The easiest microcontroller to learn about

    start from some thing likes 4004s.
  12. K

    C++ or Java for getting real time data serially

    C++ or Java when I found a good stuff in JAVA, I'll study that JAVA code and then write it in C/C++. for compatible w/my microcontroller based works.
  13. K

    What's the "next line" command for 8051 in C language?

    help needed printf("\n"); or printf("\r\n"); \n = new line \r = carriag return (to start of line) in some terminal emulation program, it want \r for bring cursor to 1st location of line.
  14. K

    from 5 volts to ± 9 to 12 volts

    Try sg3524 (or any SMPS ICs) looking for cct in datasheets. so many choice to finish ur work: choice #1. Boost converter with SMPS [to between 9 to 12 Volt] in single pole and then generate neg voltage with sw/cap choice #2. single SMPS and + 0 - secondary coil x'former choice #3...
  15. K

    I need to design 2nd order low pass filter and 1st order HPF

    try FilterLab® V2.0 from https://www.microchip.com/ regard

Part and Inventory Search

Back
Top