[HELP] How to test your applications

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

Moderators: cheriff, TyRaNiD

Post Reply
kundarmah
Posts: 12
Joined: Mon May 18, 2009 1:29 am

[HELP] How to test your applications

Post by kundarmah »

Is there a way to test your newly programmed homebrew application without putting it into your psp? or to test it in PC?

I'm tired of compiling then transferring the file to the PSP just to test my app.
iceman755
Posts: 30
Joined: Mon Jul 21, 2008 1:12 am

Post by iceman755 »

PSPLink is what you need, if I remember right it comes (or the source) in the sdk files.
"Libera eas de ore leonis, ne absorbeat eas tartarus, ne cadant in obscurum"
a_noob
Posts: 97
Joined: Sun Sep 17, 2006 8:33 am
Location: _start: jr 0xDEADBEEF

Post by a_noob »

Code: Select all

svn co svn://svn.ps2dev.org/psp/trunk/psplinkusb
pushd psplinkusb
make
make release
pushd usbhostfs_pc
make
sudo cp ./usbhostfs_pc $PSPDEV/bin/usbhostfs
popd
pushd pspsh
make
sudo cp ./pspsh $PSPDEV/bin/pspsh
popd
popd

Code: Select all

.øOº'ºOø.
'ºOo.oOº'
User avatar
Torch
Posts: 825
Joined: Wed May 28, 2008 2:50 am

Post by Torch »

It's part of the regular SDK/Toolchain's build script. It should already be compiled and ready when you setup your environment. (Or should have failed on Cygwin while compiling remotejoy)
willow :--)
Posts: 107
Joined: Sat Jan 13, 2007 11:50 am

Post by willow :--) »

You can also abstract the problem and have a library that allows you to compile the game for Linux/Windows.
JGE++ does that.

PSPLink is still useful to test performance and rendering issues on the PSP of course. But at least, you can test everything that's not "PSP specific" on your computer.

There's also a PSP emulator but last time I tried t it was too slow to do some useful testing.
anmabagima
Posts: 87
Joined: Thu Oct 01, 2009 8:43 pm

Post by anmabagima »

Hi,

I'm using eclipse and pspsdk. All testing is done using PSPLink and it works very well. I would not do it completely on a PC as the performance on the PC could be very much missleading as well as the memory you have their available.

I would prefer PSPLink as it is easy to use and most of the time stable.

Regards
AnMaBaGiMa
kundarmah
Posts: 12
Joined: Mon May 18, 2009 1:29 am

Post by kundarmah »

Thanks for all the replies. psplinkusb made my programming easy, Thanks to all of you.
Post Reply