Robert Dale Smith

Results 35 comments of Robert Dale Smith

Hey psm14, Did you ever get this working with 4.4?

@leecyrille I am looking to do xinput with tinyUSB on RP2040 as well. I came across this project, but still working on verifying it works for me. [https://github.com/fluffymadness/tinyusb-xinput]( https://github.com/fluffymadness/tinyusb-xinput)

oh after digging into this more I see that this actually the opposite of what I'm looking for. Trying to find a working example of reading x-input from controllers over...

For my device I am only using USB for firmware updates. So my application software does not report anything through USB (currently). I think for my case, extending Micronucleus will...

You were right, this has not been simple. Still trying to figure out how to get the application version passed through the configuration reply. Once I do figure out how...

@cpldcpu I successfully added some dummy version data onto the configurationReply and have it render in the command line tool. ``` PROGMEM const uint8_t configurationReply[8] = { (((uint16_t)PROGMEM_SIZE) >> 8)...

Yea that was one of the first things I tried but when I do so micronucleus behaves as if that `configurationReply` is not defined. I will keep tinkering and see...

Dang yea I have been banging my head against this one. I reverted to before these changes: https://github.com/micronucleus/micronucleus/commit/0b0475160a0ef050646cf7a028c21bb85a0d5730 but still same issue, so must have been another commit. @ArminJo I...

@ArminJo > > and have it render in the command line tool. > > How did you manage this? I read two bytes for program version here: https://github.com/micronucleus/micronucleus/compare/master...RobertDaleSmith:snes23do-app-version-lite?expand=1#diff-4c3b3752bbaffdc43c97424bc76d63e305bdca404f04c4aa3f2a92333f444b48R252. Then I...

At five minute build myself. Ended up here looking for a solution.