RetroPie forum home
    • Recent
    • Tags
    • Popular
    • Home
    • Docs
    • Register
    • Login

    Support for upcoming console cases

    Scheduled Pinned Locked Moved Ideas and Development
    drivercasescriptcontribution
    26 Posts 4 Posters 7.3k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • M
      MichaelKirsch
      last edited by MichaelKirsch

      Im sorry i forgot to link the github : https://github.com/MichaelKirsch/kintaro_pcb

      1 Reply Last reply Reply Quote 0
      • meleuM
        meleu @MichaelKirsch
        last edited by

        @michaelkirsch hello man. I'm not sure about the purpose of your post. Are you asking for help to write a RetroPie scriptmodule?

        • Useful topics
        • joystick-selection tool
        • rpie-art tool
        • achievements I made
        1 Reply Last reply Reply Quote 0
        • M
          MichaelKirsch
          last edited by

          Hey man . Yes actually i want to make it as easy as possible for the users of retropie to use the case. So yes i would need some help how to write a proper RetroPie scriptmodule

          meleuM 1 Reply Last reply Reply Quote 0
          • meleuM
            meleu @MichaelKirsch
            last edited by meleu

            @michaelkirsch there's no dedicated doc for that (look here: https://retropie.org.uk/api/), but you can learn from the existing code. It's not that hard. Here is an example:
            https://github.com/RetroPie/RetroPie-Setup/blob/master/scriptmodules/supplementary/powerblock.sh

            • Useful topics
            • joystick-selection tool
            • rpie-art tool
            • achievements I made
            M 2 Replies Last reply Reply Quote 1
            • BuZzB
              BuZz administrators
              last edited by

              @michaelkirsch You will need to look at existing modules, and https://retropie.org.uk/api/

              To help us help you - please make sure you read the sticky topics before posting - https://retropie.org.uk/forum/topic/3/read-this-first

              1 Reply Last reply Reply Quote 2
              • M
                MichaelKirsch @meleu
                last edited by

                @meleu thank you very much for your reply i will read myself into it

                1 Reply Last reply Reply Quote 0
                • M
                  MichaelKirsch @meleu
                  last edited by

                  @meleu but there is one question left to me: how is the module (once its done ) implemented into retropie and where is it uploaded ?

                  meleuM 1 Reply Last reply Reply Quote 0
                  • meleuM
                    meleu @MichaelKirsch
                    last edited by

                    @michaelkirsch said in Support for upcoming console cases:

                    @meleu but there is one question left to me: how is the module (once its done ) implemented into retropie and where is it uploaded ?

                    Locally it should be placed at $HOME/RetroPie-Setup/scriptmodules/supplementary/SCRIPT_MODULE_NAME.sh. But if you want to make it part of RetroPie-Setup you have to submit a Pull Request to https://github.com/RetroPie/RetroPie-Setup repository.

                    • Useful topics
                    • joystick-selection tool
                    • rpie-art tool
                    • achievements I made
                    M 2 Replies Last reply Reply Quote 0
                    • M
                      MichaelKirsch @meleu
                      last edited by

                      @meleu thank you very much. I will work towards a pull request for the RetroPie-Setup

                      1 Reply Last reply Reply Quote 0
                      • M
                        MichaelKirsch @meleu
                        last edited by

                        @meleu I have written a scriptmodule now. Can i share it here before i make a pull request so we can maybe find some mistakes already. Its working fine here on multiple raspberrys.

                        meleuM 1 Reply Last reply Reply Quote 0
                        • meleuM
                          meleu @MichaelKirsch
                          last edited by meleu

                          @michaelkirsch sharing here can be a good idea, but you can do as you wish. By the way, just FYI, the man who approves (or not) if your script module will be part of RetroPie-Setup is @BuZz .

                          • Useful topics
                          • joystick-selection tool
                          • rpie-art tool
                          • achievements I made
                          M 1 Reply Last reply Reply Quote 0
                          • M
                            MichaelKirsch @meleu
                            last edited by

                            @meleu @BuZz here is my working scriptmodule. If there are any mistakes please point them out and i will fix them immediately. Link: https://github.com/MichaelKirsch/kintaro_scriptmodule

                            meleuM 1 Reply Last reply Reply Quote 0
                            • meleuM
                              meleu @MichaelKirsch
                              last edited by

                              @michaelkirsch some things I noticed at a first glance:

                              • some lines are indented with a tab followed by spaces (lines 45, 50 and 58). This should be fixed to spaces only.

                              • if your driver is for rpi only, you can make the scriptmodule be shown only on rpi installs using some flags. Example:

                              rp_module_flags="noinstclean !mali !x86"
                              
                              • I think the function remove_kintaropcb should also do those steps to disable the driver (systemctl disable and stop).

                              • I also think you should say what exactly that pcb_1.0.0_armhf.deb installs.

                              • Useful topics
                              • joystick-selection tool
                              • rpie-art tool
                              • achievements I made
                              M 2 Replies Last reply Reply Quote 0
                              • M
                                MichaelKirsch @meleu
                                last edited by

                                @meleu Thank you for your quick reply. I will do this today

                                1 Reply Last reply Reply Quote 0
                                • M
                                  MichaelKirsch @meleu
                                  last edited by

                                  @meleu two questions. Where should i write what the .deb is doing ? And what program do you use to see if something is only indented or tab ? I use gedit on linux and that doesnt show that

                                  meleuM 1 Reply Last reply Reply Quote 0
                                  • meleuM
                                    meleu @MichaelKirsch
                                    last edited by

                                    @michaelkirsch said in Support for upcoming console cases:

                                    Where should i write what the .deb is doing ?

                                    Maybe in rp_module_help. You can break lines using \n. Example:

                                    rp_module_help="Kintaro Pcb Driver\n\nThis module installs:\n- file1\n- file2\n- file3..."
                                    

                                    And what program do you use to see if something is only indented or tab ?

                                    Mozilla Firefox (look lines 45, 49 and 60):

                                    0_1506521317582_bad_indentation.png

                                    I use gedit on linux and that doesnt show that

                                    I also opened your file with vim editor and noticed those tabs, maybe your gedit is configured to display tabs as 4 spaces.

                                    • Useful topics
                                    • joystick-selection tool
                                    • rpie-art tool
                                    • achievements I made
                                    M 2 Replies Last reply Reply Quote 0
                                    • M
                                      MichaelKirsch @meleu
                                      last edited by

                                      @meleu said in Support for upcoming console cases:

                                      rp_module_help="Kintaro Pcb Driver\n\nThis module installs:\n- file1\n- file2\n- file3..."

                                      okay thanks i will do that :)

                                      1 Reply Last reply Reply Quote 0
                                      • M
                                        MichaelKirsch @meleu
                                        last edited by

                                        @meleu yeah seems like gedit is not doing a great job with it i now fixed it within github

                                        meleuM 1 Reply Last reply Reply Quote 0
                                        • meleuM
                                          meleu @MichaelKirsch
                                          last edited by

                                          @MichaelKirsch some points

                                          • pcb.py into /opt/kintaro could be just the full path: /opt/kintaro/pcb.py. Same thing for kintaro.service.

                                          • I can't see why your driver needs doxygen. Is it really necessary?

                                          • I'm not sure if it will be part of RetroPie-Setup. Even if not, I think that a scriptmodule is the way to provide an user-friendly way to your customers install/enable your driver. ;-)

                                          • Useful topics
                                          • joystick-selection tool
                                          • rpie-art tool
                                          • achievements I made
                                          M 1 Reply Last reply Reply Quote 0
                                          • M
                                            MichaelKirsch @meleu
                                            last edited by

                                            @meleu okay i will change the pathes. Yes i just saw that too no i dont need doxygen :)

                                            1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post

                                            Contributions to the project are always appreciated, so if you would like to support us with a donation you can do so here.

                                            Hosting provided by Mythic-Beasts. See the Hosting Information page for more information.