Speed up developement process!

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

Moderators: cheriff, TyRaNiD

Post Reply
minderz
Posts: 5
Joined: Mon Aug 31, 2009 3:53 am

Speed up developement process!

Post by minderz »

i think it would be very useful for a psp programmer to have the usb always on so he can easily trasfer file to psp (with a batch file...?) and view results of his software a lot faster.
Unfortunately the only plugin that do the trick is USbON but it's not compatible with fw 5.00 m33-6 or at least it doesn't work for me.
Any ideas?

p.s.
Also some suggestion about a decent IDE is welcome, or some tutorial about how to set up DevC++, Eclipse or anything else with pspsdk for windows.
Thanx in advance to you all!
jsharrad
Posts: 100
Joined: Thu Oct 20, 2005 3:06 am

Post by jsharrad »

Use psplinkusb, it's in the svn and downloaded & built by the toolchain script.
jojojoris
Posts: 255
Joined: Sun Mar 30, 2008 4:06 am

Post by jojojoris »

About an IDE

There are much tutorials about how you set up the environment.

I use NetBeans because it is verry easy to set up. It has a nice code completion function and it uses makefiles to compile things so you can use the psp makefile inside the SDK. Unfortunately I prefer to run make in a console because i like it to run usbhost_fs and pspsh in the same console.

Code: Select all

int main(){
     SetupCallbacks();
     makeNiceGame();
     sceKernelExitGame();
}
Post Reply