sopc 提示 associatedAddressablePoint out of range

sopc 提示 associatedAddressablePoint out of range 我现在使用的是DE2_NIOS_HOST_MOUSE_VGA,用SOPCBuilder翻开工程后呈现以下错误:"Error:ISP1362.avalon_slave_1_irq: associatedAddressablePoint out of range",请问各位怎样处理?谢谢了 参考了别人的帖子提示 这个IP核内部有中断信号产生,那么就要对这个irq信号作合适的处理。由于这个irq信号是要向Nios CPU中传送的,所以在自定义IP的生成过程中,需要将Inte**ce类型设置为interrupt_sender,Signal Type设置为irq(即中断高电平有效),还需要在后续的Inte**ces一栏中对此中断作相应的设置,将Associated addressable inte**ce设置为avalon_slave_0即可(这个应根据具体情况进行选择)。但是还是没有解决问题。

 

这个IP核内部有中断信号产生,那么就要对这个irq信号作合适的处理。由于这个irq信号是要向Nios CPU中传送的,所以在自定义IP的生成过程中,需要将Inte**ce类型设置为interrupt_sender,Signal Type设置为irq(即中断高电平有效),如下图所示:sopc 提示 associatedAddressablePoint out of range
sopc 提示 associatedAddressablePoint out of range


上述设置完成后,可能会出现错误:
Error:interrupt_sender:associatedAddressablePoint out of range
Warning:interrupt_sender:Interrupt not associated with addressable connection point.
如下所示:
sopc 提示 associatedAddressablePoint out of range

此时,还需要在后续的Inte**ces一栏中对此中断作相应的设置,将Associated addressable inte**ce设置为avalon_slave_0即可(这个应根据具体情况进行选择),
如图:
sopc 提示 associatedAddressablePoint out of range

然后上述错误警告即可解决。
另外,在后面的SOPC Builder系统构建过程中,还应该注意该irq优先级的设置。尤其是在系统中存在多个中断的时候,一定要注意这些中断优先级的设置,否则在后续的Nios中程序的运行可能就会出现各种意想不到的结果。

转载于:https://www.cnblogs.com/xiaoyueqingfeng/archive/2012/07/12/2588417.html