what is Function sceSyscon_driver_44439604 () use for

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

Moderators: cheriff, TyRaNiD

Post Reply
kevinwillis
Posts: 5
Joined: Thu Apr 26, 2007 4:34 pm

what is Function sceSyscon_driver_44439604 () use for

Post by kevinwillis »

Today i look up the pspsdk-doc and find a function named "sceSyscon_driver_44439604 (int power)" in debug->sio.c file(the doc didn't say what it used for ).
But when i look up the sio.c file , i didn't find this function !!
Instead it include a H file <pspsyscon.h>.
So i want to find this function in sceSyscon_driver.s ,frustrating i didn't find it still.
Anybody know what this Function used for ??
adrahil
Posts: 274
Joined: Thu Mar 16, 2006 1:55 am

Post by adrahil »

It's name is sceSysconCtrlHRPower
be2003
Posts: 144
Joined: Thu Apr 20, 2006 2:46 pm

Re: what is Function sceSyscon_driver_44439604 () use for

Post by be2003 »

kevinwillis wrote:Today i look up the pspsdk-doc and find a function named "sceSyscon_driver_44439604 (int power)" in debug->sio.c file(the doc didn't say what it used for ).
But when i look up the sio.c file , i didn't find this function !!
Instead it include a H file <pspsyscon.h>.
So i want to find this function in sceSyscon_driver.s ,frustrating i didn't find it still.
Anybody know what this Function used for ??

Code: Select all

/**
 * Control the remote control power
 *
 * @param power - 1 is on, 0 is off
 * 
 * @return < 0 on error
 */
int sceSysconCtrlHRPower&#40;int power&#41;;
its right in pspsyscon.h...
- be2003
blog
kevinwillis
Posts: 5
Joined: Thu Apr 26, 2007 4:34 pm

Post by kevinwillis »

thanks a lot!!
Post Reply