Hello all. I'm on a relatively fresh installation of FreeBSD 13.0 which, to my knowledge, supports PS4 controllers. I've tested Citra and everything works perfectly as far as 3DS emulation is concerned. PSP emulation is a completely different story however. PPSSPP recognises the analogue stick and the face buttons, but the D-Pad doesn't work at all.
Here's what I've done to my /boot/loader.conf
I also set up /usr/local/etc/devd/ds4.conf in accordance with the instructions on the RPCS3 wiki page to cover my bases.
I've tried looking for help on the PPSSPP forums, but it looks like it only officially supports Linux. Any ideas as to what might be causing this?
Here's what I've done to my /boot/loader.conf
Code:
ps4dshock_load="YES"
I also set up /usr/local/etc/devd/ds4.conf in accordance with the instructions on the RPCS3 wiki page to cover my bases.
Code:
# DualShock 4
notify 100 {
match "system" "USB";
match "subsystem" "INTERFACE";
match "type" "ATTACH";
match "vendor" "0x054c";
match "product" "0x05c4";
action "chmod 0666 /dev/$cdev";
};
# DualShock 4 Wireless Adapter
notify 100 {
match "system" "USB";
match "subsystem" "INTERFACE";
match "type" "ATTACH";
match "vendor" "0x054c";
match "product" "0x0ba0";
action "chmod 0666 /dev/$cdev";
};
# DualShock 4 Slim
notify 100 {
match "system" "USB";
match "subsystem" "INTERFACE";
match "type" "ATTACH";
match "vendor" "0x054c";
match "product" "0x09cc";
action "chmod 0666 /dev/$cdev";
};
I've tried looking for help on the PPSSPP forums, but it looks like it only officially supports Linux. Any ideas as to what might be causing this?