赛灵思
直播中

韩凤英

7年用户 230经验值
私信 关注
[问答]

包装错误2908是关于什么的?

谁知道这个错误是关于什么的?
我从未遇到过问题之前运行相同的UCF,但现在在映射时它给我一个错误:pack:2908可以在xilinx数据库中找到任何内容。
使用ise 13.1

以上来自于谷歌翻译


以下为原文

anyone know what this error is about?  i run the same UCF before never had issues, but now at mapping it give me an error:pack:2908  could find anything in xilinx data base.  using ise 13.1

回帖(11)

张晓宁

2018-10-10 11:03:54
消除过程的好抓!
看起来
IOSTANDARD = LVDS_25;
// *不好。
IOSTANDARD = LVDS25;
// 好
如果PlanAhead生成了错误的.UCF文件语法,则表示您应该报告的错误(请打开Webcase)。
目前尚不清楚该错误是出现在PlanAhead中是为了生成错误的语法,还是在ISE中的某个其他地方出现不一致的约束形式处理,或两者兼而有之。
如果您错误地手动指定了IOSTANDARD,那么问题就解决了。
在任何一种情况下,请将此主题标记为“已解决”,并接受我们的谢意,以便发现并记录它。
- 鲍勃埃尔金德
签名:新手的自述文件在这里:http://forums.xilinx.com/t5/New-Users-Forum/README-first-Help-for-new-users/td-p/219369总结:1。
阅读手册或用户指南。
你读过手册了吗?
你能找到手册吗?2。
搜索论坛(并搜索网页)以寻找类似的主题。
不要在多个论坛上发布相同的问题。
不要在别人的主题上发布新主题或问题,开始新的主题!5。
学生:复制代码与学习设计不同.6“它不起作用”不是一个可以回答的问题。
提供有用的详细信息(请与网页,数据表链接).7。
您的代码中的评论不需要支付额外费用。
我没有支付论坛帖子的费用。
如果我写一篇好文章,那么我一无所获。
在原帖中查看解决方案

以上来自于谷歌翻译


以下为原文

Good catch by process of elimination!
 
It seems that
IOSTANDARD = LVDS_25;  // *NOT* OK.
IOSTANDARD = LVDS25;   // OK
 
If PlanAhead generated the incorrect .UCF file syntax, this represents a bug that you should report (by opening a webcase, please).  It's not clear whether the bug is in PlanAhead for generating incorrect syntax, or somewhere else in ISE for inconsistent handling of a constraint form, or both.
 
If you manually specified the IOSTANDARD incorrectly, then your problem is solved.
 
In either case, please mark this thread as "SOLVED", and accept our thanks for uncovering and documenting it.
 
- Bob Elkind
SIGNATURE:
README for newbies is here: http://forums.xilinx.com/t5/New-Users-Forum/README-first-Help-for-new-users/td-p/219369

Summary:
1. Read the manual or user guide.  Have you read the manual? Can you find the manual?
2. Search the forums (and search the web) for similar topics.
3. Do not post the same question on multiple forums.
4. Do not post a new topic or question on someone else's thread, start a new thread!
5. Students: Copying code is not the same as learning to design.
6 "It does not work" is not a question which can be answered. Provide useful details (with webpage, datasheet links, please).
7. You are not charged extra fees for comments in your code.
8. I am not paid for forum posts.  If I write a good post, then I have been good for nothing.View solution in original post
举报

吴萍

2018-10-10 11:09:27
是13.1 64位

以上来自于谷歌翻译


以下为原文

ise 13.1 64 bit
举报

吴萍

2018-10-10 11:21:15
错误是I / O组件“io_p”具有非法的IOSTANARD值LVDS_25。
我看vhd缓冲区的ibfudsgeneric地图(iostandard =>“LVDS_25”,IFD_DELAY_VALUE =>“0”,DIFF_TERM => TRUE)

以上来自于谷歌翻译


以下为原文

the error is I/O component "io_p" has illegal IOSTANARD value LVDS_25.  i look the vhd buffer its  

ibfuds
generic map(
iostandard => "LVDS_25",
IFD_DELAY_VALUE => "0",
DIFF_TERM => TRUE)
举报

张晓宁

2018-10-10 11:35:21
错误是I / O组件“io_p”具有非法的IOSTANARD值LVDS_25
在同一个IO银行中使用了哪些其他IOSTANDARD?
该信号所在的IO bank的VCCO是什么?
这个信号是差分对的一半吗?
LVDS用于差分信号,而不是单端信号。
- 鲍勃埃尔金德
签名:新手的自述文件在这里:http://forums.xilinx.com/t5/New-Users-Forum/README-first-Help-for-new-users/td-p/219369总结:1。
阅读手册或用户指南。
你读过手册了吗?
你能找到手册吗?2。
搜索论坛(并搜索网页)以寻找类似的主题。
不要在多个论坛上发布相同的问题。
不要在别人的主题上发布新主题或问题,开始新的主题!5。
学生:复制代码与学习设计不同.6“它不起作用”不是一个可以回答的问题。
提供有用的详细信息(请与网页,数据表链接).7。
您的代码中的评论不需要支付额外费用。
我没有支付论坛帖子的费用。
如果我写一篇好文章,那么我一无所获。

以上来自于谷歌翻译


以下为原文

the error is I/O component "io_p" has illegal IOSTANARD value LVDS_25
 
what other IOSTANDARDs are in use in the same IO bank?
What is VCCO for the IO bank in which this signal is located?
Is this signal half of a diff pair?  LVDS is for differential signals, not single-ended signals.
 
-- Bob Elkind
SIGNATURE:
README for newbies is here: http://forums.xilinx.com/t5/New-Users-Forum/README-first-Help-for-new-users/td-p/219369

Summary:
1. Read the manual or user guide.  Have you read the manual? Can you find the manual?
2. Search the forums (and search the web) for similar topics.
3. Do not post the same question on multiple forums.
4. Do not post a new topic or question on someone else's thread, start a new thread!
5. Students: Copying code is not the same as learning to design.
6 "It does not work" is not a question which can be answered. Provide useful details (with webpage, datasheet links, please).
7. You are not charged extra fees for comments in your code.
8. I am not paid for forum posts.  If I write a good post, then I have been good for nothing.
举报

更多回帖

发帖
×
20
完善资料,
赚取积分