js2 & js3 controlled by same controller
-
Ok, I have prepared a 4-player hardware setup with a Raspberry Pi 4 at my site now with the most recent version of RetroPie (4.6).
The lower ControlBlock has jumper configuration SJ1:1 SJ2:0;
The upper ControlBlock has jumper configuration SJ1:0, SJ2:0.The USB micro power is connected to the lower ControlBlock, as is the power switch.
I have installed the ControlBlock driver with the RetroPie setup, but the instructions for directly installing the driver as given at https://github.com/petrockblog/ControlBlockService2/tree/bugfix/powerswitch-broken#quick-installation should also work.
With this arcade configuration (
/etc/controlblockconfig.cfg
) all four controllers are working as expected:{ "controlblocks" : [ { "enabled" : true, "address" : { "SJ1" : 0, "SJ2" : 0 }, "gamepadtype" : "arcade", "onlyOneGamepad" : false, "powerswitchOn" : true }, { "enabled" : true, "address" : { "SJ1" : 1, "SJ2" : 0 }, "gamepadtype" : "arcade", "onlyOneGamepad" : false } ] }
BTW: Thanks for pointing out the missing configuration items. I have updated the README and default configuration file now.
Could you try and see if you can reproduce my observations with this arcade configuration? You would only need to change the gamepad types to arcade and connect ground with any input pin to see if the corresponding arcade button is working.
Another idea: The ControlBlock driver creates a log file at
/tmp/controlblock.log
. Could you copy and paste its contents here? -
Hey Florian,
I've made the 4-player setup with the controlblock configured as arcade-gamepad.
Everything is the same as you discribed, unless the jumpers:
The lower ControlBlock has jumper configuration SJ1:0 SJ2:0;
The upper ControlBlock has jumper configuration SJ1:1, SJ2:1.I've tested all the connections in arcade mode and every button works fine.
So it looks like the connection to the RPi is working well...The log-file is copied after I've done the arcade-mode testing, but it doesn't look strange (to me).
2020-05-29 17:14:50.441 DEBUG [467] [Logger::logMessage@18] Starting ControlBlock driver. 2020-05-29 17:14:50.448 DEBUG [467] [Logger::logMessage@18] Created configuration. isEnabled: true, address: 0, pad type: arcade, power switch: true, only one gamepad: false 2020-05-29 17:14:50.449 DEBUG [467] [Logger::logMessage@18] Created configuration. isEnabled: true, address: 6, pad type: arcade, power switch: false, only one gamepad: false 2020-05-29 17:14:50.504 DEBUG [467] [Logger::logMessage@18] Enabled power signal. 2020-05-29 17:14:50.504 DEBUG [467] [Logger::logMessage@18] Created PowerSwitch. doShutdown: 1 2020-05-29 17:14:50.504 DEBUG [467] [Logger::logMessage@18] Starting gamepad polling ...
I've also taken a copy of the log-file when in NES/SNES-mode, this one you can see below:
2020-05-29 17:10:43.833 DEBUG [457] [Logger::logMessage@18] Starting ControlBlock driver. 2020-05-29 17:10:43.841 DEBUG [457] [Logger::logMessage@18] Created configuration. isEnabled: true, address: 0, pad type: nes, power switch: true, only one gamepad: false 2020-05-29 17:10:43.841 DEBUG [457] [Logger::logMessage@18] Created configuration. isEnabled: true, address: 6, pad type: snes, power switch: false, only one gamepad: false 2020-05-29 17:10:43.881 DEBUG [457] [Logger::logMessage@18] Enabled power signal. 2020-05-29 17:10:43.881 DEBUG [457] [Logger::logMessage@18] Created PowerSwitch. doShutdown: 1 2020-05-29 17:10:43.881 DEBUG [457] [Logger::logMessage@18] Starting gamepad polling ...
-
@KSack Ok, thanks for that. I agree, the logs do not look strange. Also, good to hear that Arcade is working.
Now we can focus on the NES/SNES controllers part.Do you have two NES controllers attached to one ControlBlock and the two SNES controllers attached to another ControlBlock?
Or one NES and one SNES controller on one ControlBlock?I will try and reproduce the exact same behaviour here then.
-
@petrockblog
Both controllers are connected to one ControlBlock, so 2 NES to one ControlBlock, 2 SNES to the other ControlBlock.
I've also tried to change the position: NES top, SNES bottom / SNES top, NES bottom.
Also I've tried to connect with only the 2 controllers I wanted to test at a time, so only the SNES testing, then unplug SNES controllers and only the NES controllers testing. (with off/on of the RPi)When using only 2 controllers, it works fine, so I know the controllers are working as they should do... (these are originals, but I don't think that's a case)
I hope you can figure it out!
-
@petrockblog
Is it possible that one (or both) ControlBlocks don't work as they should or do you think it's a firmware issue because of the relatively new RPi4? I suppose that the HW-configuration wasn't tested yet, because of the new RPi4? -
Ok, I did some tests myself. "Unfortunately", I am not able to reproduce it. Here is my hardware setup:
- I am using a Raspberry Pi 4.
- Two ControlBlocks stacked upon each other.
- The lower one has solder jumper configuration SJ1=1, SJ2=0.
- The user one has solder jumper configuration SJ1=0, SJ2=0.
- Power button, USB micro, status LED are connected to the lower ControlBlock.
- The two signal pins (GPIO pins 11 and 12) from the lower ControlBlock are removed so that the upper ControlBlock is not affected by the power signals.
- The NES controllers are connected to the lower ControlBlock, the SNES controllers are connected to the upper ControlBlock.
This is the content of
/etc/controlblockconfig.cfg
:{ "controlblocks" : [ { "enabled" : true, "address" : { "SJ1" : 0, "SJ2" : 0 }, "gamepadtype" : "snes", "onlyOneGamepad" : false, "powerswitchOn" : true }, { "enabled" : true, "address" : { "SJ1" : 1, "SJ2" : 0 }, "gamepadtype" : "nes", "onlyOneGamepad" : false } ] }
With this setup, the SNES controllers connected with the upper ControlBlock are working separately from each other.
Maybe this gives some new ideas? -
@petrockblog
I've done the whole setup just like you did, but I struggled with some things.
I think (still not 200% sure) I've narrowed the problem to one of the boards, let me explain:First of all I've made the whole setup like you did, one board 0,0, the other 1,0. Exactly the same connection with the controllers, SNES on top, NES on the lower board.
I changed my controlblockconfig.cfg the same way as you described.
But here was the first thing I noticed: You've put SNES on board 1 with the powerswitch ON, when the NES board was at the bottom. (just to be sure, is this a valid .cfg?)
I've tried it that way and even the power-on didn't work.
So I changed the .cfg with the NES on board 1, but it still didn't work.After that I've taken all apart and switched the hardware configuration:
Only the NES board, changed the .cfgagain: power-on didn't work.Only the SNES board, changed the .cfg, … , again: power-on worked, jstest worked for both the controllers
Put the SNES board at the bottom, NES on top, changed the .cfg: power-on worked!
jstest:
the 2 controllers at the bottom working fine,
the 2 controllers at the top both controlled by the same controllerI've taken some pictures of the hardware configuration and a video of the jstest, but I can't upload them, so I've send them by mail.
-
I changed my setup a bit more and was finally able to reproduce the issue!
After some time I was also able to get to the cause for the strange behaviour - there was a bug in the ControlBlock driver. I am so sorry for that!The fix is already pushed and you can a fetch and reinstall the driver!
-
@petrockblog
YOU ARE THE BEST!
Updating the driver made it work.
Thanks a lot for the time you've put into this -
I am so glad to hear that :-)
Contributions to the project are always appreciated, so if you would like to support us with a donation you can do so here.
Hosting provided by Mythic-Beasts. See the Hosting Information page for more information.