The following warnings occurred:
Warning [2] Undefined property: MyLanguage::$archive_pages - Line: 2 - File: printthread.php(287) : eval()'d code PHP 8.1.34 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/printthread.php(287) : eval()'d code 2 errorHandler->error_callback
/printthread.php 287 eval
/printthread.php 117 printthread_multipage



Freeplaytech Forum
Slim L2R2 dual analog 4ADC add-on issue - Printable Version

+- Freeplaytech Forum (https://forum.freeplaytech.com)
+-- Forum: Freeplay Zero / Freeplay CM3 / Game Pie Advance (https://forum.freeplaytech.com/forumdisplay.php?fid=24)
+--- Forum: Freeplay Zero/CM3 (AKA GPA) Software (https://forum.freeplaytech.com/forumdisplay.php?fid=26)
+--- Thread: Slim L2R2 dual analog 4ADC add-on issue (/showthread.php?tid=5292)

Pages: 1 2


RE: Slim L2R2 dual analog 4ADC add-on issue - tsouders - 05-24-2022

This is great! I just started back on this project today and I'm almost there.

I'm having the same issue with L2 and R2 not recognizing. I tried ssh and typing the command `/etc/modprobe.d/mk_arcade_joystick.conf`but am getting a permission denied. What are the exact commands I need to use for this? Am I typing it in wrong?

Really appreciate the help guys!


RE: Slim L2R2 dual analog 4ADC add-on issue - Flavor - 05-24-2022

(05-24-2022, 04:52 AM)tsouders Wrote: This is great! I just started back on this project today and I'm almost there.

I'm having the same issue with L2 and R2 not recognizing. I tried ssh and typing the command `/etc/modprobe.d/mk_arcade_joystick.conf`but am getting a permission denied. What are the exact commands I need to use for this? Am I typing it in wrong?

Really appreciate the help guys!

/etc/modprobe.d/mk_arcade_joystick.conf is a configuration file.  If you just type 
Code:
/etc/modprobe.d/mk_arcade_joystick.conf
that will try to "run" it, but that's not possible.

To spit out the contents of /etc/modprobe.d/mk_arcade_joystick.conf, you would want to type
Code:
cat /etc/modprobe.d/mk_arcade_joystick.conf
and then post the output here, if possible.

To edit the the /etc/modprobe.d/mk_arcade_joystick.conf file, you would want to type
Code:
sudo nano /etc/modprobe.d/mk_arcade_joystick.conf


For reference, here are what some of the commands do.
sudo: runs the following command as the "super user" who has rights to edit all files
nano: Nano is a text editor that can edit the file that follows
cat: concatenate a file (just dumps its contents out onto the screen)