Hello all,
I'm trying to figure out how to permanently assign controllers on my MiSTer arcade machine. I'm using Antonio's JAMMA adapter (which is pretty fantastic for the price by the way).
So I see that just recently permanent controller assignments are possible. Here's the relevant section of dmesg after loading the menu:
Code: Select all
[ 2.191128] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2.191142] usb 1-1.2: Product: Arduino Micro
[ 2.191152] usb 1-1.2: Manufacturer: Arduino LLC
[ 2.191161] usb 1-1.2: SerialNumber: Daemonbite Arcade
[ 2.192793] cdc_acm 1-1.2:1.0: ttyACM0: USB ACM device
[ 2.198447] HID usage: 0x00010004, original interval: 1
[ 2.198478] JS: endpoint->bInterval=1, interval=1
[ 2.198486] HID usage: 0x00010004, applied interval: 1
[ 2.198792] input: Arduino LLC Arduino Micro as /devices/platform/soc/ffb40000.usb/usb1/1-1/1-1.2/1-1.2:1.2/0003:2341:8037.0001/input/input0
[ 2.199436] hid-generic 0003:2341:8037.0001: input,hidraw0: USB HID v1.01 Joystick [Arduino LLC Arduino Micro] on usb-ffb40000.usb-1.2/input2
[ 2.204369] HID usage: 0x00010004, original interval: 1
[ 2.204388] JS: endpoint->bInterval=1, interval=1
[ 2.204396] HID usage: 0x00010004, applied interval: 1
[ 2.204681] input: Arduino LLC Arduino Micro as /devices/platform/soc/ffb40000.usb/usb1/1-1/1-1.2/1-1.2:1.3/0003:2341:8037.0002/input/input1
[ 2.205304] hid-generic 0003:2341:8037.0002: input,hidraw1: USB HID v1.01 Joystick [Arduino LLC Arduino Micro] on usb-ffb40000.usb-1.2/input3
I've tried the following in my ini to no avail:
Code: Select all
player_1_controller=usb-ffb40000.usb-1.2/input2
player_2_controller=usb-ffb40000.usb-1.2/input3
Code: Select all
player_1_controller=0003:2341:8037.0001
player_2_controller=0003:2341:8037.0002
Code: Select all
player_1_controller=usb1/1-1/1-1.2/1-1.2:1.2/
player_2_controller=usb1/1-1/1-1.2/1-1.2:1.3/
I'm on the May 26 distribution so should be all up to date. Any ideas?