Hangs on "Preparing to launch payload" on Linux
Closed this issue · 5 comments
When attempting to use the payload injector on my Linux machine the console output hangs at "Preparing to launch payload" at which point nothing will happen whatsoever. What's strange is this seems to happen on any payload injector website on my machine, and the fusee-interfacee-tk injector just fails outright, although doing any of this on windows with tegrarcmgui just works. Is this an issue with the method used to inject the payload or a problem with my linux installation?
(Sorry for the late answer)
Hmmm, is there any error showing through the chrome console?
Had the same Problem. The Console says: main.js:131 Uncaught (in promise) DOMException: Failed to execute 'open' on 'USBDevice': Access denied.
Not sure how to fix it on fedora
that is the method that opens the connection and establishes the payload logic.
Check to make sure WebUSB is enabled:
if (!navigator.usb) { alert('Web USB is not enabled.'); }
This is how we deal with Firefox, and then we just send the log message.
A check for web usb has been added, thanks!