示例#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
}