Forum Replies Created
Viewing 3 posts - 1 through 3 (of 3 total)
-
AuthorPosts
-
12/27/2015 at 19:45 in reply to: PS3 clone controller not pairing via bluetooth, errors via USB #112595
elahi
ParticipantI’ve spent some time playing with sixad (Gasia branch). I’ve found that hid_server() function (see bluetooth.cpp) loops continously and exits each and every cycle after getting zero or negative value from ppoll() (see code below). Pressing Home button while disconnected from USB does not affect behavior. Here I’m stuck since I do not really understand what ppoll() expected to return…
while (!io_canceled()) { int i, idx = 2; for (i=0; i<idx; i++) p[i].revents = 0; timeout.tv_sec = 1; timeout.tv_nsec = 0; if (ppoll(p, idx, &timeout, &sigs) < 1) continue; events = p[0].revents | p[1].revents; if (events & POLLIN) { if (debug) syslog(LOG_INFO, "One event received"); l2cap_accept(ctl, csk, isk, debug, legacy); if (debug) syslog(LOG_INFO, "One event proccessed"); break; } if (events & (POLLERR | POLLHUP)) { if (debug) syslog(LOG_ERR, "Server mode loop was broken"); break; } }12/27/2015 at 09:37 in reply to: PS3 clone controller not pairing via bluetooth, errors via USB #112568elahi
ParticipantI’ve tried implementing wokraround mentioned before (edit hid-sony.c) with no luck. Gamepad connects using USB successfully (no error -71) but still is not paired via bluetooth.
12/24/2015 at 10:41 in reply to: PS3 clone controller not pairing via bluetooth, errors via USB #112424elahi
ParticipantI’ve found the similar issue with RedHat – https://bugzilla.redhat.com/show_bug.cgi?format=multiple&id=1255325 . Have anyone tried this with Retropie?
-
AuthorPosts
Viewing 3 posts - 1 through 3 (of 3 total)