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.

Altera MAXII FPGA problem concerning insufficient logic cells

Status
Not open for further replies.

ZigaM

Junior Member level 2
Joined
Apr 15, 2010
Messages
23
Helped
3
Reputation
6
Reaction score
2
Trophy points
1,283
Location
Maribor - Slovenia
Activity points
1,404
Hello.

I have a problem with MAXII FPGA.

I want to save about 1500 values (16 bit).

I define array :
type int_array is array (0 to 1500) of STD_LOGIC_VECTOR (15 DOWNTO 0);

When I compile my project it ran out of logic cells. My device have only 1200 logic cells, while compiler needs 28000 cells :cry:

Does any one have any idea how can I realize my problem?


Thanx for replys.
 

Re: Altera MAXII problem

ZigaM said:
Hello.

I have a problem with MAXII FPGA.

I want to save about 1500 values (16 bit).

I define array :
type int_array is array (0 to 1500) of STD_LOGIC_VECTOR (15 DOWNTO 0);

When I compile my project it ran out of logic cells. My device have only 1200 logic cells, while compiler needs 28000 cells :cry:

Does any one have any idea how can I realize my problem?


Thanx for replys.

if you want to restore 1500 values, I suggest you add a SRAM ,and let the CPLD control it.
 

    ZigaM

    Points: 2
    Helpful Answer Positive Rating
Re: Altera MAXII problem

Yes, that can solve the problem, but I meant if there is another way without adding components. Only software solution?


Well, I will connect dsPIC to CPLD. Can I use PIC as memmory for CPLD?
 

Altera MAXII problem

A CPLD can not has so many Flip Flop to satisfy you requirement.
you can use FPGA ,but that will cost more.
If you use MCU to store data, make sure the ram space is enough, not only for data stack ,but also for the program.
 

    ZigaM

    Points: 2
    Helpful Answer Positive Rating
Re: Altera MAXII problem

Well, I already give up on program solution.

I am allready searching for parallel SRAM.
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top