Git Product home page Git Product logo

Comments (24)

black-sliver avatar black-sliver commented on July 18, 2024

Does dmesg journalctl -k say anything?

Should be something like

New USB device found, idVendor=1209, idProduct=5a22, bcdDevice= 1.00
[...]
SerialNumber: DEMO00000000
[...]
cdc_acm [...]: ttyACM0: USB ACM device

from qusb2snes.

SVaeth avatar SVaeth commented on July 18, 2024

I'm sorry, I wasn't expecting such a quick response, and thank you

I just tried it again, ran `journalctl -k --since "10 minutes ago" and it does look like it is detected, but QFile2Snes never finds it

Added log file and screenshot for reference. I have tried connecting the FXPak Pro to the laptop with it dislodged from the SuperNT and tried connecting with the SuperNT on and running the FXPak Pro, both after verifying QUsb2Snes is running on :8080 Neither worked

I also did not do the serial configuration step because I don't know what my device value would be to replace /dev/ttyACM0 if that would help?
out.txt
Screenshot from 2021-10-10 13-47-24

from qusb2snes.

SVaeth avatar SVaeth commented on July 18, 2024

Also adding this from my phone: the picture of my system information

from qusb2snes.

black-sliver avatar black-sliver commented on July 18, 2024

can you enable Systemtray -> Misc -> Enable debug logs, restart QUsb2Snes and then look in ~/.local/share/QUsb2Snes/log-debug.txt for the debug log?

(open the Systemtray -> Devices menu and/or start an app like QFile2Snes that scans for devices to get scan results into that log)

from qusb2snes.

SVaeth avatar SVaeth commented on July 18, 2024

I'm not understanding. I do not see Systemtray -> Misc -> Enable debug logs. What am I trying to do? Am I trying to enable debug logs on the kernel or QUsb2Snes? In either case I interface with my terminal.

If it's enabling debugging on the kernel to see additional logs when connecting to the usb port, then there should be a command

If it's enabling debugging at the app level to see log messages in QUsb2Snes, then there should be a configuration property.

from qusb2snes.

Skarsnik avatar Skarsnik commented on July 18, 2024

QUsb2snes should show an icon on your system system tray where you can interact to activate option/devices.
If you use qusb2snes without an Ui, you need to add debugLog = true in the config file.

from qusb2snes.

SVaeth avatar SVaeth commented on July 18, 2024

I did not get an icon when I started QUsb2Snes. I only know it's running because when I try to open the app again it says 8080 is already in use and when I run lsof -i :8080 it says QUsb2Snes is listening. Might be something I have to fix with my DE. I run gnome

Here's the logs after setting the debugLog flag in .config/skarsnik.nyo.fr/QUsb2Snes.conf. It says it's connected, and lsof -i :8080 says the connection was established, but QFile2Snes still isn't showing any devices detected. Output of lsof -i :8080.

Screenshot from 2021-10-11 10-20-14

Here's the configuration files too, renamed so git allows them to be uploaded

debug.txt
QFile2Snes.txt
QUsb2Snes.txt

from qusb2snes.

black-sliver avatar black-sliver commented on July 18, 2024

i think gnome3 got rid of the "tray area" and only supports notify thingies. you may have to install an extension to get that back.

do you have a line like cdc_acm [...]: ttyACM0: USB ACM device in your journalctl -k? because qt seems to not find any such usb-serial port (the FxPak USB firmware uses a generic modem-like USB driver to provide a serial port). can you maybe do ls -al /dev/ttyA* to see if it's actually there?

from qusb2snes.

Skarsnik avatar Skarsnik commented on July 18, 2024

from qusb2snes.

black-sliver avatar black-sliver commented on July 18, 2024

I don't see any ttyAMA, ttyACM or ttyUSB in the debug.txt. the name ttyS4 points to being a PCI/e or on-board serial port. My log looks like this:

      SD2SNESFactory : "ttyACM0" "sd2snes" "DEMO00000000" Busy :  false
      SD2SNESFactory : "ttyS0" "" "" Busy :  false
            WSServer : DeviceFactory status done :  1 / 2

with ttyS0 being an on-board serial header

from qusb2snes.

Skarsnik avatar Skarsnik commented on July 18, 2024

from qusb2snes.

SVaeth avatar SVaeth commented on July 18, 2024

So I ran sudo ls -al /dev/ttyA* and '/dev/ttyA*': No such file or directory

So I do not appear to have a device named tty/ACM0 or anything similar, and I'm not sure what device to add to do the serial configuration

from qusb2snes.

black-sliver avatar black-sliver commented on July 18, 2024

the kernel should automatically create that device, that's why i asked about the dmesg journalctl -k output

from qusb2snes.

SVaeth avatar SVaeth commented on July 18, 2024

So I should have ACM0 already, or do I get ACM0 from plugging in the usb and running QUsb2Snes/QFile2Snes?

Should I be looking at why my device doesn't have ACM/AMA devices?

from qusb2snes.

black-sliver avatar black-sliver commented on July 18, 2024

plugging in while powered up, or powering up while plugged in should make your OS kernel pick up the usb device, load the driver (it's a standard driver, nothing you installed with qusb) and create that node in /dev. qusb2snes is only a user space program, it needs a working device node to your actual hardware.

from qusb2snes.

SVaeth avatar SVaeth commented on July 18, 2024

Okay I got an ACM0 to pop up this time. I was hoping to be able to run the microUSB to download content directly, save my FXPak Pro some more in not having to remove the cartridge from the system as often, but I guess that is not the case.

When running the FXPak Pro on the SuperNT with it plugged in I got some different logs with an error to look at. I can send them from my computer one second

I can also try the serial configuration step with ttyACM0 now

from qusb2snes.

SVaeth avatar SVaeth commented on July 18, 2024

Note the error log at the bottom: Permission denied and bad file descriptor

debug.txt

from qusb2snes.

SVaeth avatar SVaeth commented on July 18, 2024

Well, stty -F /dev/ttyACM0 0:0:cbd:0:3:1c:7f:15:4:5:40:0:11:13:1a:0:12:f:17:16:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0 got rid of the error, but it still isn't connecting..

Updated logs and output from journalctl -k --since "9 minutes ago"

Also managed to get the system tray plugin installed and see the qusdb2snes menu now

debug.txt
log.txt
out.txt

from qusb2snes.

Skarsnik avatar Skarsnik commented on July 18, 2024

from qusb2snes.

SVaeth avatar SVaeth commented on July 18, 2024

Sounds like I should just make my user a root user

that is the line in the readme for setting the serial configuration. Are you saying I need a different serial configuration to set the permissions for ttyACM0? Where would I find that?

from qusb2snes.

black-sliver avatar black-sliver commented on July 18, 2024

You should not need the stty. Anyway you should not run GUI applications as root, and you should not run anything as root unless there is a reason to.

On arch, you should add your user to the uucp group, as described in https://wiki.archlinux.org/title/Users_and_groups#User_groups

from qusb2snes.

black-sliver avatar black-sliver commented on July 18, 2024

also you have to log out and log in again (or reboot) for the user groups to be applied properly

from qusb2snes.

SVaeth avatar SVaeth commented on July 18, 2024

well, I added the permissions, restarted, verified my user was added to the uucp group, ran QUsb2Snes, turned on the SuperNT, validated the ttyACM0 device was created, started QFile2Snes, and still nothing has happened. Same logs making the server request that endlessly never connects to the cartridge

from qusb2snes.

SVaeth avatar SVaeth commented on July 18, 2024

I FINALLY got it working and detected in the QFile2Snes app. Somehow the the sd2snessupport flag got set to false. I think it's from the "enable SD2Snes/FXPak Pro support" option in the QUsb2Snes tray. I hit once just to be sure, and I guess it must have toggled it off instead of just making sure it was enabled. Probably should have something: either enables only doesn't toggle or has a check mark to show the enabled/disabled state at any given time

Thank you guys for your help. I also got some handy advice out of it like the tray icons plugin in gnome and the additional user groups aside from wheel that my user should have been added to

Cheers

from qusb2snes.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.