Module windrvr6 is not loaded. Please reinstall the cable drivers. See Answer Record 22648.

我的操作系统是Linux Mint 17.2,板子是Nexys 3,ISE版本是14.7

ISE安装没有问题,就是在下载.bit到板子上的时候提示出现错误,搞了一个晚上,最后终于成功了!把过程记下来,希望也能解决你的问题。

在网上搜了下这个问题,有一个解决方法貌似有用(不过在我这里没有用),https://paddydempster.wordpress.com/2008/04/08/using-xilinx-usb-cable-on-ubuntu-without-windvr/http://rmdir.de/~michael/xilinx/,这是两个链接,你可以试一试。问题就出在windrvr6这个模块在新版的Linux内核中已经不能用了,所以有人写了个模块来模拟它的功能。

这个方法在笔者这里不管用,于是另寻出路。考虑到Nexys 3是DIGILENT公司出的,只是用了Xilinx的Spatan-6芯片,所以DIGILENT应该也会提供.bit的下载方法。抱着试试的心态,笔者在DIGILENT官网上找了找,还真给找到了,Digilent Plugin for Xilinx Tools,就是这个东西,是一个ISE的插件,功能和使用方法在官网和下载的压缩包里都有,想让这个东西起作用还需要预先安装Digilent Adept

总之,就是先安装Digilent Adept,再安装Digilent Plugin for Xilinx Tools,然后就可以检测到NEXYS 3并下载.bit了。

插件的安装路径有好几种,笔者是将libCseDigilent.solibCseDigilent.xml两个文件放在了Xilinx/14.7/ISE_DS/ISE/lib/lin64/plugins/Digilent/libCseDigilent/这个路径下。

这个方法对NEXYS 3管用,但是不知道对Xilinx自己出的板子是否管用。

时间: 2024-10-06 11:18:31

Module windrvr6 is not loaded. Please reinstall the cable drivers. See Answer Record 22648.的相关文章

Couldnt load module input, no modules loaded

# /etc/profile export TSLIB_FBDEVICE=/dev/fb0 export TSLIB_PLUGINDIR=/usr/lib/ts # /usr/lib/ts is where the "input.so" located

理解和解决requireJS的报错:MODULE NAME HAS NOT BEEN LOADED YET FOR CONTEXT

使用requireJS加载模块的时候,有时候会碰到如下的错误: Uncaught Error: Module name "module1" has not been loaded yet for context: _. Use require([]) 比如下面的代码就会报这个错误: require([], function() { var module = require("module1"); alert(module.name); }); 这个错误在requir

lua require与module

一.模块机制module 1.什么是module 对于用户来说,一个module相当于一个so库.模块的主要目标是实现代码的共享. 2.如何编写module lua是通过table来实现模块的,典型的写法如下. local M = {}        ---- 通常是加local的,如果不加,则M默认注册到_G中,require后,即使不return也可以直接使用M.加了local是局部变量,需要显示的return一下. M.print = function(...) print(...) en

jboss7 加载module过程

1. 调试类: org.jboss.as.server.Main的main方法 断点: Module.registerURLStreamHandlerFactoryModule(Module.getBootModuleLoader().loadModule(ModuleIdentifier.create("org.jboss.vfs"))); 2.程序过程如下: 2.1 初始化模块加载器(Module.getBootModuleLoader()) org.jboss.modules.L

qt连接mysql报错:QSqlDatabase: QMYSQL driver not loaded QSqlDatabase: available drivers: QSQLITE QODBC QODBC3 QPSQL QPSQL7

之前使用Qt连接mysql数据库,遇到过这样的报错,后来解决了,但没有记录下来,这次又遇到了,花了好多的精力,这次吸取上次的教训,做一下记录和总结. 报错截图: 编辑背景: Qt5.13.0,编译器是mingw73_64,是64位的. mysql-5.7.27-winx64,也是64位的. 有人说,qt的编译器的位数要和数据库的位数是一致的,我没试过不同位数行不行,反正我的都是64位的. 问题: 使用<QSqlDatabase>库进行mysql的连接操作,出现下面的报错信息,当然别忘了在.pr

SharePoint 错误集

1. Delete a site collection · Run command : Remove-SPSite –Identity http://ent132.sharepoint.hp.com/teams/monitor/ –GradualDelete –Confirm:$False · In CA Central Administration->Application Management ->Delete a Site collection Change the site colle

10.23 linux任务计划cron10.24chkconfig工具10.25 systemd管理服务10.26 unit介绍 10.27 target介绍

- 10.23 linux任务计划cron - 10.24 chkconfig工具 - 10.25 systemd管理服务 - 10.26 unit介绍 - 10.27 target介绍 - 扩展 1. anacron http://blog.csdn.net/strikers1982/article/details/4787226  2. xinetd服(默认机器没有安装这个服务,需要yum install xinetd安装) http://blog.sina.com.cn/s/blog_46

Linux Skills

Linux Skills */--> Linux Skills Table of Contents 1. How to use ramdisk in Ubuntu and Fedora? 2. How to enable ssh server in Ubuntu? 3. How to disable CPU in Linux? 4. How to disable SELinux in Linux? 5. How to deal with the errors in MP3 files in Ry

Flask学习笔记——配置管理

1.硬编码: app = Flask(__name__) # app.config 是flask.config.Config类的实例,继承自内置数据结构dict app.config['DEBUG'] = True 2.参考--flask.config.Config类: class Config(dict): """Works exactly like a dict but provides ways to fill it from files or special dict