Forum: Open Source & Homebrew Jailbreak - If you are looking for news and helpful information on PS3 topics like open source and homebrew jailbreak solutions then PSX-Scene should be your first stop. You can stay up to date on topics such as PSGroove and PSFreedom plus much more.


The above video goes away if you are a member and logged in, so log in now!




 
Would you like to get all the new info from
PSX-Scene in your email each day?




Want to learn more about the team keeping you up to date with the latest scene news?

Read about them now!

Check out our Developer bios, too!

 


User Tag List

Thread: iLLNESS's PSGrooPIC Hexes and Information Thread
  

Page 23 of 115 FirstFirst ... 13 21 22 23 24 25 33 73 ... LastLast
Results 221 to 230 of 1149
  1. #221 fw3.15 
    fodil's Avatar
    fodil is offline Registered User
    Join Date
    Sep 2010
    Posts
    26
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    0
    Hi IllNESS,
    Please...can you make the same thing with the fw 3.15!!!!

    Many thanks!
    Reply With Quote  

  2. #222  
    CapnChaosDK is offline Member
    Join Date
    Oct 2010
    Posts
    48
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    0
    Hi, thx for the guide

    I am using the PS3Break V1.1 (PIC18F2450), this one has the USBHID bootloader. Do anyone here have have the schematic for this one or a guide, so that I can compile a working hex.
    Or do any of the official psgroopic or iLLNESS work with this setup?
    Reply With Quote  

  3. #223  
    keropi666's Avatar
    keropi666 is offline Member
    Join Date
    Apr 2009
    Posts
    343
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    22
    Likes Received
    1
    hmmm using PSGrooPIC-iLLNESS-HermesV4-3.41_18Fxxxx-LEDB145C0-C1-USBHID on my p3free, boots fine but I am experiencing the same crash on uncharted2_updated... this does not happen in hermes_v4 for my teensy1.0 and it works perfect with hermes_v3 in both teensy/p3free...
    In time, Fire will fade ... and only Dark will remain
    Reply With Quote  

  4. #224  
    nipquad is offline Member
    Join Date
    Sep 2010
    Posts
    28
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    0
    Where can I find the source for Hermes V4? I need it so I can compile a hex for the D2Groove board. The source that is listed on page 1 looks like its for a PIC that has a bootloader and the D2Groove isn't big enough for a boot loader.
    Reply With Quote  

  5. #225  
    Doggie721 is offline Member
    Join Date
    Sep 2010
    Posts
    17
    Downloads
    4
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    0
    Hello iLLNESS

    I program my 360 12MHz USB Spi PIC18F4455 with the last hex (HermesV4 3.41) , but when executing a game from OM 2.1ba get an error.

    edit: the same problem with gaia OBM
    Thanks!
    Reply With Quote  

  6. #226  
    oakhead69 is online now Developer
    Join Date
    Oct 2010
    Posts
    142
    Downloads
    13
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    1 Thread(s)
    Likes Given
    10
    Likes Received
    41
    Quote Originally Posted by nipquad View Post
    Where can I find the source for Hermes V4? I need it so I can compile a hex for the D2Groove board. The source that is listed on page 1 looks like its for a PIC that has a bootloader and the D2Groove isn't big enough for a boot loader.
    You can use the source listed on page 1.

    Just comment out the bootloader i.e.
    /////////////////////////
    // Bootloader Memory Space
    // Microchip PICDEM Bootloader
    //#define CODE_START 0x800
    // Microchip USBHID Bootloader
    //#define CODE_START 0x1000
    //#build(reset=CODE_START, interrupt=CODE_START+0x08)
    //#org 0, CODE_START-1 {}
    /////////////////////////

    For D2Groove LEDs are on C1 and C2 and are inverted so you need to invert all the LED settings
    low(0) is on
    high(1) is off.

    Also you need to disable MCLR
    #fuses HSPLL,NOWDT,NOPROTECT,NOLVP,NODEBUG,NOBROWNOUT,USB DIV,PLL2,CPUDIV1,VREGEN,PUT,NOMCLR

    I also change the PIC to 18F2550, not sure if this needed or not.
    #include <18F2550.h>

    One thing I am not sure about is if
    #use delay(clock=48000000)
    needs changing to
    #use delay(clock=16000000)
    Up to now I have left it as the default 48.

    Hope this helps.
    Reply With Quote  

  7. #227  
    DVBisOK is offline Member
    Join Date
    Oct 2010
    Posts
    28
    Downloads
    1
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    0
    Now Hermes works for me! At the main.c i comment out every LED only LED1 is in there and now it works fine!
    PSGrooPIC-iLLNESS 1.0b brings me everytime a black screen!
    Reply With Quote  

  8. #228  
    xoncegame is offline Registered User
    Join Date
    Sep 2010
    Posts
    16
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    0
    plz attach psgroopic hermes v4 3.41 for pic18f4550 ,led b4 , mclr , btl
    Reply With Quote  

  9. #229  
    nipquad is offline Member
    Join Date
    Sep 2010
    Posts
    28
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    0
    Quote Originally Posted by oakhead69 View Post
    You can use the source listed on page 1.

    Just comment out the bootloader i.e.
    /////////////////////////
    // Bootloader Memory Space
    // Microchip PICDEM Bootloader
    //#define CODE_START 0x800
    // Microchip USBHID Bootloader
    //#define CODE_START 0x1000
    //#build(reset=CODE_START, interrupt=CODE_START+0x08)
    //#org 0, CODE_START-1 {}
    /////////////////////////

    For D2Groove LEDs are on C1 and C2 and are inverted so you need to invert all the LED settings
    low(0) is on
    high(1) is off.

    Also you need to disable MCLR
    #fuses HSPLL,NOWDT,NOPROTECT,NOLVP,NODEBUG,NOBROWNOUT,USB DIV,PLL2,CPUDIV1,VREGEN,PUT,NOMCLR

    I also change the PIC to 18F2550, not sure if this needed or not.
    #include <18F2550.h>

    One thing I am not sure about is if
    #use delay(clock=48000000)
    needs changing to
    #use delay(clock=16000000)
    Up to now I have left it as the default 48.

    Hope this helps.
    This is the exact information I needed! Thanks, now I need to lookup how to compile the src as it doesn't have the makefile like the other source files. This is my first time compiling for a PIC device.
    Reply With Quote  

  10. #230  
    Za0oO is offline Registered User
    Join Date
    Oct 2010
    Posts
    24
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    0
    MOH doesn't work with Illness hex right now... it gets stuck at the guy with the google after the install data thing. Hermes V4 needs to be fixed for it to work.
    Reply With Quote  

Page 23 of 115 FirstFirst ... 13 21 22 23 24 25 33 73 ... LastLast
Tags for this Thread

View Tag Cloud

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •