How can I load usbacc.prx and usbgps.prx in 3.52 M33?

Discuss the development of new homebrew software, tools and libraries.

Moderators: cheriff, TyRaNiD

Post Reply
sunxp0327
Posts: 6
Joined: Thu Jan 17, 2008 11:07 am

How can I load usbacc.prx and usbgps.prx in 3.52 M33?

Post by sunxp0327 »

How can I load usbacc.prx and usbgps.prx in 3.52 M33?
Where are the files?
sunxp0327
Posts: 6
Joined: Thu Jan 17, 2008 11:07 am

Post by sunxp0327 »

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.
sunxp0327
Posts: 6
Joined: Thu Jan 17, 2008 11:07 am

Post by sunxp0327 »

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
J.F.
Posts: 2906
Joined: Sun Feb 22, 2004 11:41 am

Post by J.F. »

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.
Post Reply