Matheus Fraguas

Results 117 comments of Matheus Fraguas

The video is from original game. It apply force effect during corner. Your version is only applying FFB or car collision. At least on windows. On linux looks like the...

Currently I have Ubuntu running inside `VMware Workstation Player`. It does support OpenGL and it kinda run ok... But game have some hangs from time to time and it can...

Thanks. I will install Manjaro. I don't have any experience with SDL but I will give it a shot. I see some `print` codes commented out. Those will output to...

I tried to port the DigitalIO library but those processors works quite differently. But looks like at least on the RP2040 `digitalWrite()` and `digitalRead()` are fast enough! I was testing...

Comment out this block https://github.com/SukkoPera/PsxNewLib/blob/master/src/PsxControllerBitBang.h#L24-L28 Change the calls `low()` and `high()` to `digitalWrite(PIN_NUMBER, LOW)` and `digitalWrite(PIN_NUMBER, HIGH)` IE: `att.high()` would be `digitalWrite(PIN_ATT, HIGH)` Here it's used to read.. https://github.com/SukkoPera/PsxNewLib/blob/master/src/PsxControllerBitBang.h#L70 Change...

Got it working? > If redeclaring them as private variables is unnecessary then changing PIN_CMD to cmd may be the most fluid solution? I don't see why redeclare them. Just...

The PI PICO does have pullup. I tested it in some random pins and it worked. Using `pinMode(PIN_NUMBER, INPUT_PULLUP);` ?

Just got a Volume Controller and I can confirm that it uses the same protocol as the neGcon and is supported by PsxNewLib. No idea about a 3.3v arduino as...

Just trying to get it to run as fast as possible. But the ACK pin is not even connected XD

The old lib works fine in HwSpi mode with disabled interrupts. But that's ok. I will test with the guncon and see if the added latency will impact it. Fell...