| View previous topic :: View next topic |
| Author |
Message |
d1mbu1b
Joined: 22 May 2008 Posts: 6
|
Posted: Fri Oct 03, 2008 1:41 am Post subject: samples/net/simple on FW390 |
|
|
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, |
|
| Back to top |
|
 |
fiorello
Joined: 21 Jun 2008 Posts: 14
|
Posted: Fri Oct 03, 2008 4:45 am Post subject: Re: samples/net/simple on FW390 |
|
|
| I have similiar problem but error is 800900D9, and sometimes error that u wrote. Libcurl sample also didn't work |
|
| Back to top |
|
 |
d1mbu1b
Joined: 22 May 2008 Posts: 6
|
Posted: Fri Oct 03, 2008 5:18 am Post subject: |
|
|
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); |
|
| Back to top |
|
 |
|