Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
649 views

Using XILINX XPS with Microblaze - quickest way to program the fpga

I'm designing a micro controller based around the microblaze microprocessor on a xilinx fpga. Most of the hardware setup is done. All I'm updating at this point is the c code to be run on the ...
3
votes
1answer
400 views

Flip-Flop triggered on the edge of two signals

I need a flip flop that reacts on the edges of two different signals. Something like this: if(rising_edge(sig1)) then bit <= '0'; elsif(rising_edge(sig2)) then bit <= '1'; end if; ...
3
votes
1answer
272 views

How to use an OLED display for an Avnet Virtex4?

I have an Avnet ADS-XLX-V4FX-EVL12-G (Virtex4 Evaluation Board) with OLED display. I used Xilinx EDK 10.1 with Xilinx Platform Studio 10.1 and succeded to upload some basic app to the board (serial ...
0
votes
2answers
35 views

How can I use 5x5filter (Xilinx block), it keeps telling me there is an error in the counter?

I'm trying to apply edge filter to an image using Xilinx blocks, I used 5x5 buffer then I connected the 5x5filter to it. But it keeps telling me: Illegal Period, This blocks attempts to set ...
0
votes
0answers
34 views

When Interrupt is recognized, ISR bit is not set for the peripheral

I am currently working on writing code using ISE 13.2 on Virtex 6 FPGA on the ML605 evaluation board. I have imported a new peripheral to my design. This peripheral generates Interrupts. However, ...