-
Notifications
You must be signed in to change notification settings - Fork 269
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
unable to open ftdi device for arty-a7-100t #246
Comments
I'm on Ubuntu Jammy if that helps |
Apparently this is also an issue with $ xc3sprog -c nexys4 counter_test/build/arty_100/top.bit
XC3SPROG (c) 2004-2011 xc3sprog project $Rev$ OS: Linux
Free software: If you contribute nothing, expect nothing!
Feedback on success/failure/enhancement requests:
http://sourceforge.net/mail/?group_id=170565
Check Sourceforge for updates:
http://sourceforge.net/projects/xc3sprog/develop
Could not open FTDI device (using libftdi): usb_open() failed
Unable to access FTDI device with either libftdi or FTD2XX |
Yes this error is at |
@trabucayre - a similar solution, also similar to what is mentioned in https://trabucayre.github.io/openFPGALoader/guide/install.html#udev-rules Oddly, the actual permissions / groups on # add user to dialout group
sudo usermod -a -G $USER dialout
# gain new group access without logging out/in
exec su -l $USER
# add udev rules
sudo cat <<< EOF > /etc/udev/rules.d/99-ftdi.rules
ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6010", MODE="0660", GROUP="dialout"
EOF
sudo udevadm control --reload-rules && sudo udevadm trigger |
Thanks for your feedback! |
Hi - I was just following the instructions here
https://f4pga-examples.readthedocs.io/en/latest/building-examples.html
and everything works except for openFPGALoader. I turned on verbose
display()
messages, and this is the output I getAny suggestions?
Note: it's not a permissions issue (i am part of the
dialout
group and have verified write permission)The text was updated successfully, but these errors were encountered: