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 benradu

  1. B

    Programming StrataFlash on Spartan 3e Starter Kit

    Yes, you can program anything you want in your flash. You need an EDK project that has the the flash interface. Then in EDK you go to "Device Configuration" -> "Program Flash Memory". See this for details: https://www.xilinx.com/support/documentation/sw_manuals/xilinx11/est_rm.pdf. section...
  2. B

    Need help with NgdBuild:981 error

    The clk feedback info is already in your generated vhdl in the dcm instantiation. Is something like: generic map( CLK_FEEDBACK => "1X", You can safely ignore (delete) that constraint from your ucf
  3. B

    Trying to make LED to blink rapidly on Microblaze(C languag)

    Re: Trying to make LED to blink rapidly on Microblaze(C lang I didn't look through you code but I'll try to suggest you how to learn to do it. When you use the wizard to generate the platform you also get a test a application which tests your peripherals. One of them is the LEDs GPIO. Have a...
  4. B

    PIC18F instruction timing

    OK. Yes, the processor will spend some time to save and restore the context, that is registers that will be affected in interrupt. So you can't rely on instant interrupt servicing. That holds true for any processor in this world. Now that I understand better what you try to do I suggest to use...
  5. B

    PIC18F instruction timing

    Apparently you want a precise counter but you don't really want to let the timer to do it. So instead of keeping the counter value in a variable how about letting the timer run and look for it's value only? Or better, generate an interrupt when you need to do something (something more than just...
  6. B

    The USB LED Wand - displays floating image

    My project is basically a LED stick that can detect the hand motion and display a floating image. * 32 leds capable of displaying 32 vertical pixels * Three axis accelerometer * PIC24FJ64GB106 * HID USB device, no drivers necessary * HID USB bootloader, no drivers necessary...
  7. B

    puting hex file into VHDL written rom

    Re: rom hex file Search for ppx16 on opencores.org or the web. There is a hex2rom utility in this pack that may help you. There is also a project on sourceforge.net aiming to do this. BR
  8. B

    about LVDS - request for resources

    Re: about LVDS Here you go: **broken link removed** BR
  9. B

    VHDL/module get different simulation result as a component

    Re: VHDL/module get different simulation result as a compone Your stimulus are not exactly the same. When you simulate the stand alone component your stimulus which are probably synchronous with the clock are applied a little before the active edge of your clock (depending on your testbench...
  10. B

    Problem about Inverting signals inside FPGA.

    Check your channel 1 setting (on the scope). I believe you have coupling set to AC instead of DC.
  11. B

    How to implement checksum in VHDL?

    vhdl crc ethernet bit order Have a look at this thread here:
  12. B

    Create a custom board definition file (.xbd file) in EDK ?

    edk create custom board C:\EDK92\doc\usenglish\psf_rm.pdf (assuming you have EDK 9.2) Page 115 I highly recommend to use an existing xbd from one of the demo boards which is closer to your custom board as a starting point.
  13. B

    How to design a modbus protocol using vhdl?

    altera modbus Modbus can work over serial or Ethernet. If you need to implement MODBUS over a serial connection then all you need is a UART and a processor (NIOS is very good) If you need MODBUS-TCP then you need an Ethernet port instead of UART. The best resource is here...
  14. B

    How to design a modbus protocol using vhdl?

    vhdl modbus You can use whatever you want, including VHDL, NIOS or other combinations.
  15. B

    Integrating HDL modules and CoreGenerator parts using EDK

    how to import the coregen generated core to edk I think a "Create Custom Peripheral" in EDK will help you. You should also study the IPIF documentation.

Part and Inventory Search

Back
Top