samples/net/simple on FW390

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

Moderators: cheriff, TyRaNiD

Post Reply
d1mbu1b
Posts: 6
Joined: Thu May 22, 2008 11:18 pm

samples/net/simple on FW390

Post by d1mbu1b »

I cannot get this to run on my FW390 PSP.
It simply, either crashes the PSP or returns
"The game could not be started." (8002013C)
I tried all combinations of setting PSP_FW_VERSION=390
PSP_MODULE_INFO("name", 0, 1, 1);
Do the socket operations require kernel mode?
does it have to be compiled as a prx?

Please point me in the right direction.
I feel if I can get this to work I can debug my UDP porting problem.

up until now I have only dealt with EBOOTs in user mode

Also,
does the network need to be initialized by the application or is there a way for it to be up before the application runs?

Thanks,
fiorello
Posts: 14
Joined: Sat Jun 21, 2008 11:01 pm

Re: samples/net/simple on FW390

Post by fiorello »

I have similiar problem but error is 800900D9, and sometimes error that u wrote. Libcurl sample also didn't work
d1mbu1b
Posts: 6
Joined: Thu May 22, 2008 11:18 pm

Post by d1mbu1b »

I found an example at psp programming...
you have to set user mode
and replace...
/*
if(pspSdkLoadInetModules() < 0)
{
printf("Error, could not load inet modules\n");
sceKernelSleepThread();
}
*/
sceUtilityLoadNetModule(1);
sceUtilityLoadNetModule(3);
Post Reply