完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
嗨,大家好,
我一直在尝试使用FDAtool COE文件来获取FIR编译器中的系数。 这是我的FDAtool设置: 问题是我在FIR编译器中出现错误,用红色字体表示。 如下所示: 还有其他人有同样的问题吗? 如果你能解决,请告诉我。 提前致谢, 阿明 以上来自于谷歌翻译 以下为原文 Hi guys, I have been trying to use FDAtool COE file for my coefficient in FIR compiler. this is my FDAtool setting: The problem is i got error in FIR compiler that indicate by red font. as shown below: does anyone else have the same problem? please let me know if you can solve it. Thanks in advance, Amin |
|
相关推荐
8个回答
|
|
删除coe文件中的空格。
尝试一些其他的coe文件位置 谢谢和RegardsBalkrishan ----------------------------------------------- ---------------------------------------------请将帖子标记为 一个答案“接受为解决方案”,以防它有助于解决您的查询。如果一个帖子引导到解决方案,请给予赞誉。 以上来自于谷歌翻译 以下为原文 remove space in your coe file. try some other coe file locationThanks and Regards Balkrishan -------------------------------------------------------------------------------------------- Please mark the post as an answer "Accept as solution" in case it helped resolve your query. Give kudos in case a post in case it guided to the solution. |
|
|
|
FIR编译器中的红色字体包含错误,如下所示:
更新过程中的Tcl错误,而参数'CoefficientSource'上的settig值'COE_File'。 不能使用非数字字符串作为“*”的操作数 以上来自于谷歌翻译 以下为原文 Red Font in FIR compiler contain error as shown below: Tcl error in update procedure while settig value 'COE_File' on the parameter 'CoefficientSource'. can't use non-numeric string as operand of "*" |
|
|
|
Balkrishan,
非常感谢它解决了我的问题。 问候 以上来自于谷歌翻译 以下为原文 Balkrishan, Thank you very much it solve my problem. regards |
|
|
|
Balkrishan,
我有另一个问题,就是我仍然无法将COE文件插入我的FIR编译器。 我认为这是因为我的系数数据中的十六进制格式 这是我的COE: 基数= 16; Coefficient_Width = 16; CoefData = 0e2b,170a,f7cb,072a,ffc1,0378,01bc,02ab,024d,0290,0283,0299,02a0,02af,02b8,02c0,02c9,02d2,02d9,02df,02e5,02ea,02ee,02ef, 02f1,02f3,02f1,02ef,02ee,02ea,02e5,02df,02d9,02d2,02c9,02c0,02b8,02af,02a0,0299,0283,0290,024d,02ab,01bc,0378,ffc1,072a,f7cb, 170A,0e2b; 但如果我使用这个COE不是问题: 基数= 10; Coefficient_Width = 16; CoefData = 0,52881702,105731333,158516839,211206209,263767485,316168792,368378349,420364491,472095690,523540572,574667938; 我的问题是如何在FDAtool中使用radix 10? 提前致谢 以上来自于谷歌翻译 以下为原文 Balkrishan, I have another problem, that is, i still can not insert COE file into my FIR compiler. I think it is because hex format in my coefficient data This is my COE : Radix = 16; Coefficient_Width = 16; CoefData = 0e2b,170a,f7cb,072a,ffc1,0378,01bc,02ab,024d,0290,0283,0299,02a0,02af,02b8,02c0,02c9,02d2,02d9,02df,02e5,02ea,02ee,02ef,02f1,02f3,02f1,02ef,02ee,02ea,02e5,02df,02d9,02d2,02c9,02c0,02b8,02af,02a0,0299,0283,0290,024d,02ab,01bc,0378,ffc1,072a,f7cb,170a,0e2b; But if i use this COE is not problem : Radix = 10; Coefficient_Width = 16; CoefData =0,52881702,105731333,158516839,211206209,263767485,316168792,368378349,420364491,472095690,523540572,574667938; my question is how to use radix 10 in FDAtool? Thanks in advance |
|
|
|
我的问题是如何在FDAtool中使用radix 10?
我的意思是如何将基数16转换为10? 以上来自于谷歌翻译 以下为原文 my question is how to use radix 10 in FDAtool? I mean how to convert radix 16 to 10? |
|
|
|
radix 16十六进制表示但是基数10十进制memory_initialization_radix = 10; memory_initialization_vector = 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16;在上面的文字中
radix表示数据的raidx。 我在向量中写了十进制数据,所以我的基数是“10”。 如果要以二进制形式提供内存内容,请更改coe文件,如下所示:memory_initialization_radix = 2; memory_initialization_vector = 0000,0001,0010,0011,0100,0101,0110,0111,1000,1001,1010,1011,1100 ,1101,1110,1111; 谢谢和RegardsBalkrishan ----------------------------------------------- ---------------------------------------------请将帖子标记为 一个答案“接受为解决方案”,以防它有助于解决您的查询。如果一个帖子引导到解决方案,请给予赞誉。 以上来自于谷歌翻译 以下为原文 radix 16 hexadecimal representation however radix 10 decimal memory_initialization_radix=10; memory_initialization_vector=1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16; In the above text radix means the raidx of the data. I have written decimal data in the vector so my radix is "10". If you want to give the memory contents in binary form then change the coe file like this: memory_initialization_radix=2; memory_initialization_vector=0000,0001,0010,0011,0100,0101,0110,0111,1000,1001,1010,1011,1100,1101,1110,1111;Thanks and Regards Balkrishan -------------------------------------------------------------------------------------------- Please mark the post as an answer "Accept as solution" in case it helped resolve your query. Give kudos in case a post in case it guided to the solution. |
|
|
|
|
|
|
|
Balkrishan,
这是我的IP框图: 问候, 以上来自于谷歌翻译 以下为原文 Balkrishan, This is my IP block diagram: regards, |
|
|
|
只有小组成员才能发言,加入小组>>
2429 浏览 7 评论
2831 浏览 4 评论
Spartan 3-AN时钟和VHDL让ISE合成时出现错误该怎么办?
2298 浏览 9 评论
3378 浏览 0 评论
如何在RTL或xilinx spartan fpga的约束文件中插入1.56ns延迟缓冲区?
2468 浏览 15 评论
有输入,但是LVDS_25的FPGA内部接收不到数据,为什么?
1345浏览 1评论
请问vc707的电源线是如何连接的,我这边可能出现了缺失元件的情况导致无法供电
596浏览 1评论
求一块XILINX开发板KC705,VC707,KC105和KCU1500
460浏览 1评论
2013浏览 0评论
738浏览 0评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-28 18:06 , Processed in 1.538390 second(s), Total 92, Slave 75 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号