PS2SDK
PS2 Homebrew Libraries
|
Go to the source code of this file.
Data Structures | |
struct | EYETOY_FRAME_HEAD |
struct | PS2CAM_DEVICE_INFO |
struct | PS2CAM_DEVICE_CONFIG |
Functions | |
int | PS2CamInit (int mode) |
int | PS2CamGetIRXVersion (void) |
int | PS2CamGetDeviceCount (void) |
int | PS2CamOpenDevice (int device_index) |
int | PS2CamCloseDevice (int handle) |
int | PS2CamGetDeviceStatus (int handle) |
int | PS2CamGetDeviceInfo (int handle, PS2CAM_DEVICE_INFO *info) |
int | PS2CamSetDeviceBandwidth (int handle, char bandwidth) |
int | PS2CamReadPacket (int handle) |
int | PS2CamSetLEDMode (int handle, int mode) |
int | PS2CamSetDeviceConfig (int handle, PS2CAM_DEVICE_CONFIG *cfg) |
int | PS2CamExtractFrame (int handle, char *buffer, int bufsize) |
PS2Camera EE-IOP RPC CALLS
Definition in file ps2cam_rpc.h.
struct EYETOY_FRAME_HEAD |
Definition at line 77 of file ps2cam_rpc.h.
struct PS2CAM_DEVICE_INFO |
Definition at line 104 of file ps2cam_rpc.h.
struct PS2CAM_DEVICE_CONFIG |
Definition at line 121 of file ps2cam_rpc.h.
#define PS2CAM_RPC_GETIRXVERSION 40 |
get irx version
Definition at line 16 of file ps2cam_rpc.h.
#define PS2CAM_RPC_INITIALIZE 41 |
PS2CamInit
Definition at line 18 of file ps2cam_rpc.h.
#define PS2CAM_RPC_GETDEVCOUNT 42 |
PS2CamGetDeviceCount
Definition at line 20 of file ps2cam_rpc.h.
#define PS2CAM_RPC_OPENDEVICE 43 |
Definition at line 21 of file ps2cam_rpc.h.
#define PS2CAM_RPC_CLOSEDEVICE 44 |
Definition at line 22 of file ps2cam_rpc.h.
#define PS2CAM_RPC_GETDEVSTATUS 45 |
PS2CamGetStatus
Definition at line 24 of file ps2cam_rpc.h.
#define PS2CAM_RPC_GETDEVINFO 46 |
PS2CamGetInfo
Definition at line 26 of file ps2cam_rpc.h.
#define PS2CAM_RPC_SETDEVBANDWIDTH 47 |
PS2CamSetDeviceBandwidth
Definition at line 28 of file ps2cam_rpc.h.
#define PS2CAM_RPC_READPACKET 48 |
PS2CamReadPacketCOMMAND
Definition at line 30 of file ps2cam_rpc.h.
#define PS2CAM_RPC_SETLEDMODE 49 |
PS2CamSetLEDMode
Definition at line 32 of file ps2cam_rpc.h.
#define PS2CAM_RPC_SETDEVCONFIG 50 |
Definition at line 34 of file ps2cam_rpc.h.
#define PS2CAM_LED_MODE_OFF 0 |
Definition at line 37 of file ps2cam_rpc.h.
#define PS2CAM_LED_MODE_ON 1 |
Definition at line 38 of file ps2cam_rpc.h.
#define CAM_STATUS_NOTCONNECTED 0 |
device not connected
Definition at line 43 of file ps2cam_rpc.h.
#define CAM_STATUS_CONNECTED 1 |
connected but initializing
Definition at line 45 of file ps2cam_rpc.h.
#define CAM_STATUS_CONNECTEDREADY 2 |
connect & ready for commands
Definition at line 47 of file ps2cam_rpc.h.
#define CAM_CONFIG_MASK_DIMENSION 0x00000001 |
Definition at line 50 of file ps2cam_rpc.h.
#define CAM_CONFIG_MASK_OFFSET 0x00000002 |
Definition at line 51 of file ps2cam_rpc.h.
#define CAM_CONFIG_MASK_DIVIDER 0x00000004 |
Definition at line 52 of file ps2cam_rpc.h.
#define CAM_CONFIG_MASK_FRAMERATE 0x00000008 |
Definition at line 53 of file ps2cam_rpc.h.
#define CAM_ERROR_NONE (00) |
ok
Definition at line 57 of file ps2cam_rpc.h.
#define CAM_ERROR_NOTINIT -(20) |
Definition at line 58 of file ps2cam_rpc.h.
#define CAM_ERROR_INVALIDDEVICE -(21) |
Definition at line 59 of file ps2cam_rpc.h.
#define CAM_ERROR_COMMUNKNOWN -(22) |
unknown command
Definition at line 61 of file ps2cam_rpc.h.
#define CAM_ERROR_DEVNOTREADY -(23) |
device not ready
Definition at line 63 of file ps2cam_rpc.h.
#define CAM_ERROR_NODEVICE -(24) |
no compatible device connected
Definition at line 65 of file ps2cam_rpc.h.
#define CAM_ERROR_BADRANGE -(25) |
a value was out of range
Definition at line 67 of file ps2cam_rpc.h.
#define CAM_ERROR_UNKNOWN -(26) |
unknown error
Definition at line 69 of file ps2cam_rpc.h.
#define CAM_ERROR_MAXHANDLE -(27) |
out of free device handle(s)
Definition at line 71 of file ps2cam_rpc.h.
#define CAM_ERROR_BADHANDLE -(28) |
invalid device handle
Definition at line 73 of file ps2cam_rpc.h.
#define CAM_ERROR_DISCONNECTED -(29) |
device was removed
Definition at line 75 of file ps2cam_rpc.h.
int PS2CamInit | ( | int | mode | ) |
initalize the camera driver. must be called 1st
Definition at line 37 of file ps2cam_rpc.c.
References PS2CAM_RPC_INITIALIZE, and PS2CamInit().
Referenced by PS2CamInit().
int PS2CamGetIRXVersion | ( | void | ) |
Return the current version of the 'ps2cam.irx'
Definition at line 86 of file ps2cam_rpc.c.
References PS2CAM_RPC_GETIRXVERSION, and PS2CamGetIRXVersion().
Referenced by PS2CamGetIRXVersion().
int PS2CamGetDeviceCount | ( | void | ) |
get the number of compatible camera connected
Definition at line 102 of file ps2cam_rpc.c.
References PS2CAM_RPC_GETDEVCOUNT, and PS2CamGetDeviceCount().
Referenced by PS2CamGetDeviceCount().
int PS2CamOpenDevice | ( | int | device_index | ) |
open one of the compatible camera for reading
Definition at line 118 of file ps2cam_rpc.c.
References PS2CamOpenDevice().
Referenced by PS2CamOpenDevice().
int PS2CamCloseDevice | ( | int | handle | ) |
close the device if it is no longer needed or disconnected
Definition at line 134 of file ps2cam_rpc.c.
References PS2CamCloseDevice().
Referenced by PS2CamCloseDevice().
int PS2CamGetDeviceStatus | ( | int | handle | ) |
get the status of the compatible camera
Definition at line 151 of file ps2cam_rpc.c.
References PS2CAM_RPC_GETDEVSTATUS, and PS2CamGetDeviceStatus().
Referenced by PS2CamGetDeviceStatus().
int PS2CamGetDeviceInfo | ( | int | handle, |
PS2CAM_DEVICE_INFO * | info | ||
) |
Definition at line 170 of file ps2cam_rpc.c.
int PS2CamSetDeviceBandwidth | ( | int | handle, |
char | bandwidth | ||
) |
before reading you must set the camera's bandwidth
Definition at line 194 of file ps2cam_rpc.c.
References PS2CAM_RPC_SETDEVBANDWIDTH, and PS2CamSetDeviceBandwidth().
Referenced by PS2CamSetDeviceBandwidth().
int PS2CamReadPacket | ( | int | handle | ) |
read some data from the camera based on bandwidth
Definition at line 216 of file ps2cam_rpc.c.
References PS2CAM_RPC_READPACKET, and PS2CamReadPacket().
Referenced by PS2CamReadPacket().
int PS2CamSetLEDMode | ( | int | handle, |
int | mode | ||
) |
set the mode for the red led
Definition at line 251 of file ps2cam_rpc.c.
References PS2CAM_RPC_SETLEDMODE, and PS2CamSetLEDMode().
Referenced by PS2CamSetLEDMode().
int PS2CamSetDeviceConfig | ( | int | handle, |
PS2CAM_DEVICE_CONFIG * | cfg | ||
) |
Definition at line 267 of file ps2cam_rpc.c.
int PS2CamExtractFrame | ( | int | handle, |
char * | buffer, | ||
int | bufsize | ||
) |
Definition at line 284 of file ps2cam_rpc.c.