Search found 8 matches

by mirzab14
Mon Mar 17, 2008 4:37 pm
Forum: PSP Development
Topic: Turn off charging LED?
Replies: 3
Views: 1575

I tried

Code: Select all

#define CHARGE_LED 3
and it doesn't work.

I looked at main.c of Road Dog but couldn't really tell why it does work and why mine doesn't.
by mirzab14
Mon Mar 17, 2008 2:11 pm
Forum: PSP Development
Topic: Turn off charging LED?
Replies: 3
Views: 1575

Turn off charging LED?

I've been wondering if this is possible. I know its possible to turn off the WLAN, MS, and POWER LED's but is it possible to turn off the orange "charge" LED when A/C adapter is plugged in? I've searched but couldn't find anything. This is the code for the LEDControl plugin. #include <pspk...
by mirzab14
Tue Mar 11, 2008 3:09 pm
Forum: PSP Development
Topic: Pommel, Tachyon, Baryon
Replies: 21
Views: 9332

Thanks jas0nuk!

@FaderX-

It would be like this:

Code: Select all

if &#40;&#40;tachyon == 0x00140000 && baryon == 0x00030600&#41;&#41;
    &#123;
                printf&#40;"Motherboard = TA-079 v1 1g\n"&#41;;
               
    &#125;
by mirzab14
Mon Mar 10, 2008 4:23 pm
Forum: PSP Development
Topic: Pommel, Tachyon, Baryon
Replies: 21
Views: 9332

You would probably have to find tachyon and baryon of each mobo, I dont know how though.

I know jas0nuk knows how to do this since his application PSPident can detect which motherboard the PSP has.
by mirzab14
Fri Mar 07, 2008 5:39 pm
Forum: PSP Development
Topic: Pommel, Tachyon, Baryon
Replies: 21
Views: 9332

Like J.F. said, the app needs to run in kernel mode. I have successfully compiled it and it runs on 1.50. --------------------- Main.c: /* What&#58; Pommel, Tachyon and Baryon viewer Thanks to&#58; jas0nuk for libpspident.a */ #include <pspkernel.h> #include <pspdebug.h> PSP_MODULE_INFO&...
by mirzab14
Tue Jan 22, 2008 8:27 am
Forum: PSP Development
Topic: Display a full 480x272 image?
Replies: 2
Views: 1826

Thanks for the help.
by mirzab14
Tue Jan 22, 2008 7:34 am
Forum: Help Wanted Requests
Topic: Help! firmware problem??
Replies: 1
Views: 10186

DADADA is D_A's way of saying "You cannot update to official". Update to a newer custom firmware (3.52 M33), and then install update 4 for it, then update to 3.80 M33.
by mirzab14
Tue Jan 22, 2008 6:49 am
Forum: PSP Development
Topic: Display a full 480x272 image?
Replies: 2
Views: 1826

Display a full 480x272 image?

Alright, Im trying to display a 480x272 image onto the screen. sceDisplayWaitVblankStart&#40;&#41;; while &#40;x < 480&#41; &#123; while &#40;y < 272&#41; &#123; blitAlphaImageToScreen&#40;0 ,0 ,480 , 272, ourImage, x, y&#41;; y += 480; &#125; x += 272; y ...