コード例 #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
}