Recent content by Amos

  1. A

    NO MORE PESKY MEMORY CHECKINGS ON NETDIMM !!!!

    You're right, it works! Thx :) (it was logical and I missed it...) And I can confirm : we can switch from an Atomiswave game to another one without turn off/turn on.
  2. A

    NO MORE PESKY MEMORY CHECKINGS ON NETDIMM !!!!

    Thx rtw, that's what I suspected first, that's why I specified it (but if someone can validate or invalidate it) :
  3. A

    NO MORE PESKY MEMORY CHECKINGS ON NETDIMM !!!!

    No. No zero key. I try many things, let or comment out the line "s.send(struct.pack("<I", 0x7F000008) + data)". I suppose I copy correctly and still verify the line(s) before/after added it, I have the same tabs/spaces too. Here is an exemple.
  4. A

    NO MORE PESKY MEMORY CHECKINGS ON NETDIMM !!!!

    Yes of course ;) And I have this error on the screen : error 31. And when I delete the famous line, everything works again.
  5. A

    NO MORE PESKY MEMORY CHECKINGS ON NETDIMM !!!!

    It's already commented out in piforcetools.py. Since I added the famous line like this : def SECURITY_SetKeycode(data): assert len(data) == 8 #s.send(struct.pack("<I", 0x7F000008) + data) s.send(struct.pack(">IIIIIIIIH", 0x00000001, 0x1a008104, 0x01000000, 0xf0fffe3f, 0x0000ffff, 0xffffffff...
  6. A

    NO MORE PESKY MEMORY CHECKINGS ON NETDIMM !!!!

    I tried to comment, put it after (I had already tried a lot of things), but still nothing, the LCD screen doesn't light up. Arf I'm damned, is my file haunted ? :p
  7. A

    NO MORE PESKY MEMORY CHECKINGS ON NETDIMM !!!!

    Like this ? #def SECURITY_SetKeycode(data): assert len(data) == 8 s.send(struct.pack("<I", 0x7F000008) + data) s.send(struct.pack(">IIIIIIIIH", 0x00000001, 0x1a008104, 0x01000000, 0xf0fffe3f, 0x0000ffff, 0xffffffff, 0xffff0000, 0x00000000, 0x0000))
  8. A

    NO MORE PESKY MEMORY CHECKINGS ON NETDIMM !!!!

    Yes, and I have the same thing as opt2not, I don't have SECURITY_SetKeycode("\x00" * I have this : def SECURITY_SetKeycode(data): assert len(data) == 8 s.send(struct.pack("<I", 0x7F000008) + data)
  9. A

    NO MORE PESKY MEMORY CHECKINGS ON NETDIMM !!!!

    I tested different ways but it doesn't work for me... I have a Pi 2 with a LCD screen (from the member Squallrs, I bought it on another forum) and I have the same "structure" as opt2not : def SECURITY_SetKeycode(data): assert len(data) == 8 s.send(struct.pack("<I", 0x7F000008) + data) I try...
Back
Top