Forum Discussion
Altera_Forum
Honored Contributor
14 years agoIORD 11.0 vs IORD 9.1
Hello, int main()
{
int i;
while(1)
{
i = IORD_ALTERA_AVALON_PIO_EDGE_CAP(BUTTON_BASE);
printf("PIO EDGE CAP: %d\n", i);
IOWR_ALTERA_AVALON_PIO_EDGE_CAP(BUTTON_BASE, 0x0);
usleep...
Altera_Forum
Honored Contributor
14 years agoIf I change the width of my PIO to 1 bit I read the value 64 when it captures no edge and 65 when it captures an edge at the input... the strange thing is that with the old version I didn't have this problem.