| View previous topic :: View next topic |
| Author |
Message |
sunxp0327
Joined: 17 Jan 2008 Posts: 6
|
Posted: Fri Apr 25, 2008 2:03 pm Post subject: How can I load usbacc.prx and usbgps.prx in 3.52 M33? |
|
|
How can I load usbacc.prx and usbgps.prx in 3.52 M33?
Where are the files? |
|
| Back to top |
|
 |
sunxp0327
Joined: 17 Jan 2008 Posts: 6
|
Posted: Fri Apr 25, 2008 4:06 pm Post subject: |
|
|
I test the func without gps hardware as follow
u32 moduleLoadStart (const char *path)
{
SceUID loadResult, startResult;
int status;
loadResult = sceKernelLoadModule(path,0,NULL);
if (loadResult & 0x80000000) return 1;
startResult = sceKernelStartModule(loadResult,0,NULL,&status,NULL);
if (loadResult != startResult) return 2;
return 0;
}
the path is "ms0:/camprx/usbacc.prx" or "flash0:/kd/usbacc.prx", and the function doesn't return 0. |
|
| Back to top |
|
 |
sunxp0327
Joined: 17 Jan 2008 Posts: 6
|
Posted: Sat Apr 26, 2008 10:12 pm Post subject: |
|
|
No one can help me... but I find Where is error
The problem can run only in Game352 folder, and it can't run in game150 |
|
| Back to top |
|
 |
J.F.
Joined: 22 Feb 2004 Posts: 2906
|
Posted: Sun Apr 27, 2008 11:55 am Post subject: |
|
|
| People here often don't respond for a couple days to threads like this one for the very reason shown by this thread - the person didn't need any help and solved the problem on their own. Also remember that folks here are DEVELOPERS, so are usually involved in their own projects and thus not able to respond instantly. Always wait a week if you really want an answer. Bumping a thread within a couple hours (like you did here) particularly irritates folks, making them less likely to respond. |
|
| Back to top |
|
 |
|