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 Alex02

  1. A

    reading a file which contains text and number in matlab

    Hi, You can skip the text with fseek and then read the numbers. For instance: f = fopen('filename.txt'); fseek(f, 122, 'bof'); A = fscanf(f,'%f',[2,4]); Hope this will help
  2. A

    interface between 2 FPGA via RS232

    The cable has to be null modem, it means that the transmit and receive lines are crosslinked. Did you test both FPGAs with the hiperterminal program independently ?
  3. A

    interface between 2 FPGA via RS232

    Did you test it with the hiperterminal or a similar program first? If not I'd do that first. If it is working with the hiperterminal it shouldn'd have any problem.
  4. A

    Help me implement high accuracy system with XUP boards

    Hi rockybc, Thanks for the comment, I'll see what you say. It is worth saying that I've found tools like flopoco which is interesting to do floating point cores and there is also a FPU core in opencores.
  5. A

    Hellp to GDM1602A LCD !

    Dinho, You can do the initialization with andre_teprom's info, so you can also see the signals with the oscilloscope on the board. BTW your simulation seems to be ok. Alex
  6. A

    Hellp to GDM1602A LCD !

    Hi Dinho, Did you make the simulation? If so you can compare your simulation with the timing diagram in the datasheet (GDM1602A), this way you may see what is wrong with your code. Alex
  7. A

    Matrix multiply as a custom IP

    Hello everyone! I'm using Microblaze to run an application which involves matrix multiplication. At this moment the application is very slow and the code is executed from the DDR SRAM (because the it's too long) and most of the operations are matrix multiply (27 by 27) and matrix inverse (6 by...
  8. A

    Program stops running in the instruction xil_printf

    Hello everyone! I did a software application in C language which uses pointers and dynamic memory allocation, I ran it with a C compiler and the application is working well. Now I am trying to implement it in microblaze using the EDK and the XUPV5 board, so I created a bootloader in order to...
  9. A

    Help me implement high accuracy system with XUP boards

    I think I will use XUPV5. Regarding VHDL-2008 and the tools: System Generator, Riviera-PRO/Active and Synplify, I will see how I can use them in order to implement the system. Is there another tool or thing that I should consider to do sine, x^(3/2), div, mul with floating point operators using...
  10. A

    Help me implement high accuracy system with XUP boards

    Thanks for the answers. I also think that Virtex-5 would be a good choise, and although I haven't had many experience with this board it seems similar to the Virtex-2P in some things. Regarding the link, I didn't see any source code debugged for the tool that I have Xilinx 10.1. Anyway, I...
  11. A

    Help me implement high accuracy system with XUP boards

    Hello everyone, I have got two Xilinx boards: XUPV2-Pro and XUPV5-LX110T. And I want to implement an optimized system which needs calculations as for instance: sine, cosine, square root, div, mul and matrix inversion. It also requires a high accuracy in the data, I mean, in some cases it...

Part and Inventory Search

Back
Top