Recent content by GaryOderNichts

  1. GaryOderNichts

    Hacking UDPIH: USB Host Stack exploit + Recovery Menu

    Should work fine. A regular Pi Pico is also not running Linux. The RP2040-Zero is a microcontroller board with the same RP2040 as the Pi Pico and also features USB1.1 host and device support, which means it's possible to use it with UDPIH.
  2. GaryOderNichts

    Homebrew The Wii U Homebrew Request Thread

    Not sure where you got this information from, but moonlight uses GPU acceleration for decoding since the beginning. The Wii U dynamically links against system libraries, so there is nothing proprietary needed to use it. There is no "FullRAM" mode. All Breath of the Wild does it use the...
  3. GaryOderNichts

    HAI-Priiloader, A Bootloader For VC Injects

    UDPIH exploits a flaw in the OS contained within the fw.img. It cannot work if the fw.img is broken.
  4. GaryOderNichts

    HAI-Priiloader, A Bootloader For VC Injects

    UDPIH cannot work if the OSv10 fw.img doesn't boot, which is the case here.
  5. GaryOderNichts

    Hacking UDPIH: USB Host Stack exploit + Recovery Menu

    If you mean the parental controls pin, yes.
  6. GaryOderNichts

    Hacking Hacking the WiiU gamepad

    https://github.com/GaryOderNichts/DRXUtil can already flash a modified gamepad firmware.
  7. GaryOderNichts

    Homebrew Homebrew app Moonlight Wii U

    - 854x480 is the native gamepad resolution. - You can use Steam as a launcher for Yuzu or install something like Playnite as a frontend to launch other apps.
  8. GaryOderNichts

    Homebrew Homebrew app Bloopair: Connect Controllers from other Consoles natively

    Bloopair can only emulate Wii U Pro controllers.
  9. GaryOderNichts

    Homebrew Homebrew app Bloopair: Connect Controllers from other Consoles natively

    Sound and motion sensors isn't something the official Wii U Pro Controller supports, so it's not possible to convert this data to a Dualshock 4. Awesome!
  10. GaryOderNichts

    Homebrew Homebrew app Bloopair: Connect Controllers from other Consoles natively

    The controller arrived today and it looks like it only sends basic input reports for some reason. Not sure if it's missing some sort of activation report which a PS4 usually sends. I added support for those basic reports to the latest Bloopair nightly builds now...
  11. GaryOderNichts

    how to dump Alarmo eMMC?

    There's a cool Rust project for the Alarmo, which comes with an example to access the eMMC over USB: https://github.com/roccodev/alarmo-rs/blob/master/examples/usb_scsi.rs
  12. GaryOderNichts

    Homebrew Homebrew app Bloopair: Connect Controllers from other Consoles natively

    My official DualShock 4 works without any issues. Can you try version 1.0.2? If it still doesn't work can you send a link to those controllers? I might buy one to see what the issue is. Edit: I ordered one of them, will test it once it arrives.
  13. GaryOderNichts

    Using UDPIH to fix 160-1400 error on two Wii Us

    Your SD Card is either not detected or is missing the recovery menu.
  14. GaryOderNichts

    Hacking Hacking the WiiU gamepad

    There's an issue with flashrom I had to fix, which prevents writing to the flash reliably: https://github.com/GaryOderNichts/flashrom/commit/10b5ed793ab2185d044988f31b022e8768752be4 There's a hidden menu in the firmware which can be opened, if a flag is set in the UIC EEPROM. You can probably...
  15. GaryOderNichts

    Hacking Hacking the WiiU gamepad

    Nice work! Definitely a really cool project. I actually started working on something similar a while back, but instead of replacing the flash I just used the existing flash and used my Pi to write to the flash. I started patching some stuff in the existing firmware, but decided to start working...