jmoseman01 / Ps2ViGEmClient

1 stars 0 forks source link

Elf #1

Open Kostas1925 opened 10 months ago

Kostas1925 commented 10 months ago

Could you release the .elf file and instructions of the projext ?

jmoseman01 commented 10 months ago

https://github.com/jmoseman01/ps2ConnectToSocket is the project, I haven't built this for awhile. Also, I don't have a ps2 to test it out on any more.

Kostas1925 commented 10 months ago

Is there any instructions I could follow to get running it ?

jmoseman01 commented 10 months ago

I'll build it once I get off work. I can't guarantee it'll work though as I no longer have a ps2. Also, this is a proof of concept so it prooves that this can work but it's not fully functional.

jmoseman01 commented 10 months ago

Can you hop on the ps2 modding scene discord at 6pm eastern time to talk about this?

jmoseman01 commented 10 months ago

I built it to an elf binary, I don't remember but I think you need the irx files along side the elf binary - https://github.com/jmoseman01/ps2ConnectToSocket

jmoseman01 commented 10 months ago

I hard coded the ip address in the .c file so you'll have to build it yourself after you change that. There's some lines in the .c file as follows

//Initialize IP address.
IP4_ADDR(&IP, 192, 168, 0, 200);
IP4_ADDR(&NM, 255, 255, 255, 0);
IP4_ADDR(&GW, 192, 168, 0, 1);
//DNS is not required if the DNS service is not used, but this demo will show how it is done.
IP4_ADDR(&DNS, 192, 168, 0, 1);