I don’t believe you need a crossover cable anymore. The RPi sorts out whatever type of cable you connect now.So did you set up the IP in the DIMM and WiPi setup?
Are you using a crossover network cable?
I don’t believe you need a crossover cable anymore. The RPi sorts out whatever type of cable you connect now.So did you set up the IP in the DIMM and WiPi setup?
Are you using a crossover network cable?
Both versions should work fine, I've used the old and new ones with my setup. Do you have any other serial adaptors plugged in or just the TrendNet? what error do you get?I can't get the card reader part to comply eiter.. even with the new launchcard.php.
I have a TrendNet adapter but I think its an older version.. the one that looks like this https://www.elfa.se/Web/WebShopImages/landscape_large/3-/01/Trendnet-TU-S9-30084383-01.jpg could that be the problem? The v3 that you have is sold out everywhere in Europe.
I did need it yesterday.I don’t believe you need a crossover cable anymore. The RPi sorts out whatever type of cable you connect now.
Just the Trendnet adapter in a USB port and the network cable.. I'll try again tonight and get back to you but I think it just says "no adapter" or something in the Pi.. The N2 (playing ID2) flash "Initilizing CW" before showing "Error CW" and in the game menu it says Ready and when I try to initilaize the reader it fails and shows error...Both versions should work fine, I've used the old and new ones with my setup. Do you have any other serial adaptors plugged in or just the TrendNet? what error do you get?
The message is probably 'No serial adaptor detected - Please check connections' - with your adaptor connected check the port is available with 'ls /dev/ttyUSB*' from an ssh terminal - you should see /dev/ttyUSB0 returned, if not your adaptor might be faulty. If it does show /dev/ttyUSB0, check the launchcard.php file for these lines:Just the Trendnet adapter in a USB port and the network cable.. I'll try again tonight and get back to you but I think it just says "no adapter" or something in the Pi.. The N2 (playing ID2) flash "Initilizing CW" before showing "Error CW" and in the game menu it says Ready and when I try to initilaize the reader it fails and shows error...
Nothing like that just stock R.Pi4..If you're using an FTDI chipset adaptor for OpenJVS I create an alias of COM1 when plugged in so it knows where to launch, then scans the others present to find one for the card reader. The 'else' statement above is the critical one.
For old versions of Pi perhaps? I’m 99% sure they’re auto sensing now. At least my model 2 and 3 are… running a standard cable.I did need it yesterday.
Sure, you can also hardcode it in the launch command further down:Nothing like that just stock R.Pi4..
I'll check for ttyUSB0 tonight.
--Edit-- If it replies with ttyUSB1 I should just edit the script?
Dude, I'm 100% sure I had to dig around in boxes in my garage yesterday to find a red cross over cable. 100%.For old versions of Pi perhaps? I’m 99% sure they’re auto sensing now. At least my model 2 and 3 are… running a standard cable.
ttyUSB0 is returned “Else” statement is also present.The message is probably 'No serial adaptor detected - Please check connections' - with your adaptor connected check the port is available with 'ls /dev/ttyUSB*' from an ssh terminal - you should see /dev/ttyUSB0 returned, if not your adaptor might be faulty. If it does show /dev/ttyUSB0, check the launchcard.php file for these lines:
if (readlink("/dev/COM1")){
echo 'COM1 is present - checking ports<br>';
$comport = readlink("/dev/COM1");
$compath = '/dev/'.$comport;
echo 'COM1 path: '.$compath.'<br>';
foreach ($devices as $device) {
if ($device != $compath){
$emuport = $device;
}
}
}
else{
$emuport = '/dev/ttyUSB0';
}
If you're using an FTDI chipset adaptor for OpenJVS I create an alias of COM1 when plugged in so it knows where to launch, then scans the others present to find one for the card reader. The 'else' statement above is the critical one.