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 106 of 115 FirstFirst ... 6 56 96 104 105 106 107 108 ... LastLast
Results 1,051 to 1,060 of 1149
  1. #1051  
    sam23 is offline Registered User
    Join Date
    Dec 2010
    Posts
    7
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    0
    You know, i didn't want to deviate too much from the original code, beside as far as I know no commercial key turns off the silm, so I don't know if the silm it's supposed to shut down after a succesful jig authentication or if it was just some glitch.

    Anyway to guess the correct delay you should look at the assembly for that loop in the main.lst file, a pic eeprom wirte is around 4ms if I remember correctly, so you should play with delay_ms(x) (x=4,8,12,...).
    Reply With Quote  

  2. #1052  
    iLLNESS is offline Member
    Join Date
    Dec 2002
    Location
    Ontario
    Posts
    923
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    1
    i have managed to get a %100 bootrate with my slim ps3 shutting off after using some of your code....

    just trying a few more things before i release.
    PIC based jailbreakers please visit my thread below and please READ. I have spent a few hours now trying to explain everythign as best I can here. You will also find my latest HEX releases there as well.

    http://psx-scene.com/forums/showthre...946#post546946
    Reply With Quote  

  3. #1053  
    iLLNESS is offline Member
    Join Date
    Dec 2002
    Location
    Ontario
    Posts
    923
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    1
    Quote Originally Posted by sam23 View Post
    You know, i didn't want to deviate too much from the original code, beside as far as I know no commercial key turns off the silm, so I don't know if the silm it's supposed to shut down after a succesful jig authentication or if it was just some glitch.

    Anyway to guess the correct delay you should look at the assembly for that loop in the main.lst file, a pic eeprom wirte is around 4ms if I remember correctly, so you should play with delay_ms(x) (x=4,8,12,...).
    you may be right, i cant say for sure, about whether or not the ps3 is supposed to shut off..

    but it seems silly to have some models of the ps3 shut off while others do not.
    PIC based jailbreakers please visit my thread below and please READ. I have spent a few hours now trying to explain everythign as best I can here. You will also find my latest HEX releases there as well.

    http://psx-scene.com/forums/showthre...946#post546946
    Reply With Quote  

  4. #1054  
    iLLNESS is offline Member
    Join Date
    Dec 2002
    Location
    Ontario
    Posts
    923
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    1
    so its solved!

    Code:
          if(WaitJig) {
             int n = 0;
             if(WaitJig == 1) {
                if(usb_kbhit(2)) {
                   Chirp();
                   
                   usb_get_packet(2, jig_response + nJigs * 8, 8);
                   delay_us(24000);
                   nJigs++;
                   EP_BDxST_I(1) = 0x40;   //Clear IN endpoint
                   
                   if(nJigs == 8) {
    etc etc
    you can use your loop with a delay of 3000 as well. currently ive only tested 1000 (8000 without loop) and it didnt work. i went as high as 240 000 without your loop and it does the same thing (turns off)

    im sure the delay could be tweaked some more, but it does work. the ps3 will turn off within a second after the lights come on the jig to show its successful.
    PIC based jailbreakers please visit my thread below and please READ. I have spent a few hours now trying to explain everythign as best I can here. You will also find my latest HEX releases there as well.

    http://psx-scene.com/forums/showthre...946#post546946
    Reply With Quote  

  5. #1055  
    iLLNESS is offline Member
    Join Date
    Dec 2002
    Location
    Ontario
    Posts
    923
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    1
    1.3 hexes and source have been posted.

    should shut the slim down now after successful payload just like the phat does.
    PIC based jailbreakers please visit my thread below and please READ. I have spent a few hours now trying to explain everythign as best I can here. You will also find my latest HEX releases there as well.

    http://psx-scene.com/forums/showthre...946#post546946
    Reply With Quote  

  6. #1056  
    sam23 is offline Registered User
    Join Date
    Dec 2010
    Posts
    7
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    0
    Yes it works, with more than 24ms it turns off. Actually with delay_us(24000) doesn't work with the extension cable, with delay_us(32000) works also with the extension cable so I guess that's a better timing.
    Reply With Quote  

  7. #1057  
    releva is offline Banned
    Join Date
    Sep 2010
    Posts
    158
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    0
    Quote Originally Posted by sam23 View Post
    Yes it works, with more than 24ms it turns off. Actually with delay_us(24000) doesn't work with the extension cable, with delay_us(32000) works also with the extension cable so I guess that's a better timing.
    I'm using an extension cable as well and i can go down to 13500 lol without any problems. My cable is around 50cm.
    Reply With Quote  

  8. #1058  
    iLLNESS is offline Member
    Join Date
    Dec 2002
    Location
    Ontario
    Posts
    923
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    1
    Quote Originally Posted by sam23 View Post
    Yes it works, with more than 24ms it turns off. Actually with delay_us(24000) doesn't work with the extension cable, with delay_us(32000) works also with the extension cable so I guess that's a better timing.
    this is why input helps

    how many users use an extension cable though? heh
    PIC based jailbreakers please visit my thread below and please READ. I have spent a few hours now trying to explain everythign as best I can here. You will also find my latest HEX releases there as well.

    http://psx-scene.com/forums/showthre...946#post546946
    Reply With Quote  

  9. #1059  
    airguy is offline Member
    Join Date
    Sep 2010
    Location
    Greece
    Posts
    10
    Downloads
    2
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    0
    Quote Originally Posted by iLLNESS View Post
    this is why input helps

    how many users use an extension cable though? heh
    LOL !!!
    I am , and with my 90cm extension cable, delay_us(32000) works like a charm !!!
    THX !!!
    Reply With Quote  

  10. #1060  
    iLLNESS is offline Member
    Join Date
    Dec 2002
    Location
    Ontario
    Posts
    923
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    1
    Quote Originally Posted by sam23 View Post
    Yes it works, with more than 24ms it turns off. Actually with delay_us(24000) doesn't work with the extension cable, with delay_us(32000) works also with the extension cable so I guess that's a better timing.
    ive updated my hexes to use 100 000 just for the hell of it.

    mind trying it now to see if it works for you? i could only test with an extension cable that is about 1foot long.
    PIC based jailbreakers please visit my thread below and please READ. I have spent a few hours now trying to explain everythign as best I can here. You will also find my latest HEX releases there as well.

    http://psx-scene.com/forums/showthre...946#post546946
    Reply With Quote  

Page 106 of 115 FirstFirst ... 6 56 96 104 105 106 107 108 ... 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
  •