Navigation

    Recalbox Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • recalbox.com
    • Gitlab repository
    • Documentation
    • Discord
    1. Home
    2. Danixu86
    • Profile
    • Following 0
    • Followers 0
    • Topics 5
    • Posts 16
    • Best 1
    • Groups 0

    Danixu86

    @Danixu86

    1
    Reputation
    1
    Profile views
    16
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Danixu86 Unfollow Follow

    Best posts made by Danixu86

    • RE: GPi case safe shutdown problem

      Sorry for triple post... I'm not able to edit the above messages.

      Looks like I've found the problem, and is related to the way the Safe Shutdown script powers off the RPi.

      On the SS script located in /recalbox/system/hardware/case/installers/gpi/assets/recalbox_SafeShutdown_gpi.py there is a line that reboots the RPi when ES is killed:

      os.system("reboot -f")
      

      With this the shutdown is much faster because doesn't wait until the SO is ready (is like pressing the reset button, so I don't know if is dangerous), but looks like some things are not saved correctly. Changing this line to the original shutdown command is a bit slower (but much less than retropie 😅 ), but all seems to works fine.

      os.system("shutdown -h now")
      

      I've tried several times to power off using the Switch to see if fails again, and now seems to be working fine.

      I don't know if I have to report this problem on the Gitlab repository...

      Best regards.

      posted in Recalbox General
      Danixu86
      Danixu86

    Latest posts made by Danixu86

    • RE: Bios hash in 7.2 are correct?

      @Scavy said in Bios hash in 7.2 are correct?:

      @Danixu86 where did you notice the bios changes concerning GB, GBC ?

      Hello @Scaivy,

      On Recalbox 7.1.1 I have all the bios as correct (green). After upgrading to 7.2 I have noticed that some bios were marked as orange with a CRC error so I have started to search the correct file on internet. After taking a look into Google I have seen that there is no way to find those bios, and the only page where that CRC exists is just the commit where was changed on Recalbox gitlab. Is that why I have this doubt about if they are correct, because on all the sites I have found those files, the crc is the old one (or completly different to both).

      Best regards.

      posted in Recalbox General
      Danixu86
      Danixu86
    • Bios hash in 7.2 are correct?

      Hello,

      I have noticed a change in some bios related with GB, and GBC for example, where the hash has changed. Searching on internet for the correct file I have noticed that there is no way to find the new hash file, and the old one is everywhere in at least all the emulators I have seen.

      Is the hash correct? (is not critical because still working with the old file).

      Best regards.

      posted in Recalbox General
      Danixu86
      Danixu86
    • RE: PSX games always freezes on GPi case

      @Zing Oh, thanks,

      I've not received any message and I didn't see your response, sorry. I'll try in Recalbox 7.2 and if still failing I'll post there too.

      Thanks again!

      posted in Emulator Arcade/PC/Console
      Danixu86
      Danixu86
    • RE: PSX games always freezes on GPi case

      Hello @Zing,

      Sorry for take so long to test it but I was a bit busy. I've looked into the guide that you sent and I've not found a way to configure the video mode, because I think that the display is a TFT display conected through GPIO ports and then it has no modes. I've tried to get the supported modes but nothing is reported, and I only I'm able to get the resolution:

      # tvservice -s
      state 0x400000 [LCD], 320x240 @ 0.00Hz, progressive
      

      I've tried some configurations to check if maybe works, but same behaviour. Is there any way to set mode to custom?, because the smallest mode is DMT 4 which has the double of resolution.

      Thanks!!

      posted in Emulator Arcade/PC/Console
      Danixu86
      Danixu86
    • RE: PSX games always freezes on GPi case

      @Zing said in PSX games always freezes on GPi case:

      @Danixu86

      also the bios report of recalbox is green

      If you checked the Recalbox's internal BIOS checker and received a green thumbs up, then your BIOS is not the problem.

      Every time the game starts I get the same errors of this thread

      Have you tried to set up the videomode?

      • https://recalbox.gitbook.io/documentation/tutorials/video/display-configuration/complete-guide-on-video-configuration

      I'll take a look to see if I can find the way to make it work.

      Thanks!

      posted in Emulator Arcade/PC/Console
      Danixu86
      Danixu86
    • RE: Audio channels selector in audio menu (Stereo or mono)

      @Zing said in Audio channels selector in audio menu (Stereo or mono):

      @Danixu86 I recommend that you open an issue in gitlab:
      https://gitlab.com/recalbox/recalbox/-/issues

      Ok, thanks!! I'll do it 😁

      posted in Recalbox General
      Danixu86
      Danixu86
    • RE: GPi case safe shutdown problem

      Sorry for triple post... I'm not able to edit the above messages.

      Looks like I've found the problem, and is related to the way the Safe Shutdown script powers off the RPi.

      On the SS script located in /recalbox/system/hardware/case/installers/gpi/assets/recalbox_SafeShutdown_gpi.py there is a line that reboots the RPi when ES is killed:

      os.system("reboot -f")
      

      With this the shutdown is much faster because doesn't wait until the SO is ready (is like pressing the reset button, so I don't know if is dangerous), but looks like some things are not saved correctly. Changing this line to the original shutdown command is a bit slower (but much less than retropie 😅 ), but all seems to works fine.

      os.system("shutdown -h now")
      

      I've tried several times to power off using the Switch to see if fails again, and now seems to be working fine.

      I don't know if I have to report this problem on the Gitlab repository...

      Best regards.

      posted in Recalbox General
      Danixu86
      Danixu86
    • RE: GPi case safe shutdown problem

      Hello,

      Is strange, because I've took a look into the safe shutdown script and is improved compared to the original script, and this script seems to quit ES first:

                      # Tell EmulationStation to quit demo/mode and/or to exit gracefully
                      try:
                              import os
                              try:
                                      os.makedirs("/tmp/externalnotifications")
                              except: pass
                              with open("/tmp/externalnotifications/emulationstation.quitnow", "w") as sf:
                                      sf.write("exit")
                                      sfush()
                                      sf.close()
                      except IOError:
                              pass  # Can't wait or retry
      
                      # Quit emulationstation gracefully
                      parent.terminate()
                      print("Emulationstation terminated")
      

      So now I'm not sure why is failing and why if I power off the ES manually works, and with the SS script some weird things happen...

      Best regards.

      posted in Recalbox General
      Danixu86
      Danixu86
    • RE: GPi case safe shutdown problem

      Hello!, thanks for your response.

      Not really. The safe shutdown button of the back just enable or disable the safe shutdown feature when you switch off the top power button. If it is disabled, the top button just power off the RPi like a normal switch (which can lead to filesystem corruption), but when is enabled (like I have it), it calls an script that must be installed trough a signal to a GPIO pin, and this script executes a "Safe Shutdown" just running the command "shutdown -r now" if I'm not wrong. On Recalbox this script is already installed so I don't have to install it, and I'm sure that is almost working because recalbox is shutted down before the console is powered off.
      The problem is that there is something in the method that recalbox is closed that doesn't allow it to save some things, like for example the wifi configuration. Maybe related with linux shutdown method that closes some programs without wait (an example is Chrome, if you have chrome in a linux system opened and you poweroff the computer, linux doesn't wait to Crome to close and just kill it). That's why I was asking if there is any way to close the ES saving its configuration, or at least force it to save it, to modify the "Safe Shutdown" script and run it before the shutdown command.

      Thanks!!

      posted in Recalbox General
      Danixu86
      Danixu86
    • PSX games always freezes on GPi case

      Hello,

      I write because I don't know what to do to make it work... I've tried a lot of games on the GPi case using the latest version of recalbox (7.1.1). Every time the game starts I get the same errors of this thread:
      https://forum.recalbox.com/topic/19155/gpi-case-psx-crash/2

      The entire SO is freezed and I have to disconnect the power to shutdown the RPi.

      I've searched and in some posts talks about the bios, but I've checked all files hash and is correct (also the bios report of recalbox is green):

      # md5sum scph*
      dc2b9bf8da62ec93e868cfd29f0d067d  scph1001.bin
      6e3735ff4c7dc899ee98981385f6f3d0  scph101.bin
      8dd7d5296a650fac7319bce665a6a53c  scph5500.bin
      490f666e1afb15b7362b406ed1cea246  scph5501.bin
      32736f17079d0b2b7024407c39bd3050  scph5502.bin
      1e68c231d0896b7eadcad1d7d8e76129  scph7001.bin
      

      Testing the Supreme GPI V2 I've seen that the pcsx rearmed emulator built in that image works better than I've expected from a RPi Zero, emulating some games that I've tested at full speed. I've tried to copy the binary file and games has started to boot in recalbox, but buttons are not working (surely any integration).

      Is there any way to fix this problem?, because the libretro is slow and is impossible to play.

      Thanks!

      posted in Emulator Arcade/PC/Console
      Danixu86
      Danixu86