예제 #1
0
파일: sio.c 프로젝트: joshdekock/jim-psp
void pspDebugSioInit(void)
{
	/* Shut down the remote driver */
	sceHprmEnd();
	/* Enable UART 4 */
	sceSysregUartIoEnable(4);
	/* Enable remote control power */
	sceSysconCtrlHRPower(1);
	/* Delay thread for a but */
	sceKernelDelayThread(2000000);
}
예제 #2
0
파일: sio.c 프로젝트: bensaraceno/PSP
static void _sioInit(void) {
	sceHprmEnd(); // Shut down the remote driver
	sceSysregUartIoEnable(4); // Enable UART 4
	sceSysconCtrlHRPower(1); // Enable remote control power
}