NIOS Ⅱ开发需要注意的地方

1.On-Chip Memory

On-Chip Memory,尤其是RAM尽量设置大一点,不然在使用eclipse时,很容易超出存储空间,尤其是当你使用了printf函数时
NIOS Ⅱ开发需要注意的地方_第1张图片

2. PIO中断

当使用PIO中断时,先弄明白自己的中断是边沿(上升沿或者是下降沿)触发还是高低电平触发。
注意:只有当设置PIO方向为Bidir、input或者Inout类型时才能有中断产生。
Edge capture register菜单中,是否勾选Synchronously capture表示是否进行边沿捕获,下拉框中有选择边沿类型
Enable bit-clearing for edge capture register选项
If the option Enable bit-clearing for edge capture register is turned off, writing any value to the edgecapture register clears all bits in the register. Otherwise, writing a 1 to a particular bit in the register clears only that bit.
即勾选,对应位写1,则清除edgecapture寄存器对应位,否则写任何值都会将edgecapture寄存器所有位清零
NIOS Ⅱ开发需要注意的地方_第2张图片

你可能感兴趣的:(FPGA,NIOS,Ⅱ)