Quantcast
Channel: Altera Forums
Viewing all articles
Browse latest Browse all 19390

how to sent 5 different data in 5 five clock cycles

$
0
0
Hello everyone

I need to sent 5 different 16 bits data in 5 five clock cycles to my costum component.
My Altera board is driven by a 50MHz oscillator (a period of 0.02 µs).

so should I write

IOWR_16DIRECT(BASE , OFFSET, DATA_1);
usleep(0.02);
IOWR_16DIRECT(BASE , OFFSET, DATA_2);
usleep(0.02);
.
.
.
IOWR_16DIRECT(BASE , OFFSET, DATA_5);

Viewing all articles
Browse latest Browse all 19390

Trending Articles