Ok, I gave your source a try and it compiled fine. I made a few changes to support my DIY board.
Here are the fuses and clock lines.
Code:
#fuses HSPLL,NOWDT,NOPROTECT,NOLVP,NODEBUG,NOBROWNOUT,USBDIV,PLL2,CPUDIV1,VREGEN,PUT,NOMCLR
#use delay(clock=8000000)
I defined PSGROOPIC as the board...
And commented out this whole section:
Code:
///////////////////////////////////////////////////////////////////////////
// NON BOOTLOADER USERS COMMENT ALL DATA FROM ABOVE ////// TO BELOW //////
// IF NOT USING BOOTLOADER PLEASE MAKE SURE TO SET #FUSES ACCORDINGLY TO MATCH YOUR BOARD!!!!!!!
// BOOTLOADER SCRIPT
/*
#ifdef BTL_USBHID
#define BOOTLOADER USBHID
#define CODE_START 0x1000
#export (HEX, FILE=BOARD-VERSION_STRING-FIRMWARE-PLTYPE-PL3_COMMIT-BOOTLOADER.hex)
#elif defined (BTL_PICDEM)
#define BOOTLOADER PICDEM
#define CODE_START 0x0800
#export (HEX, FILE=BOARD-VERSION_STRING-FIRMWARE-PLTYPE-PL3_COMMIT-BOOTLOADER)
#else
#error Bootloader not defined
#endif
#build(reset=CODE_START, interrupt=CODE_START+0x08)
#org 0, CODE_START-1 {}
*/
///////////////////////////////////////////////////////////////////////////
And finally, I changed the led for my board on the psgroopic header file like so:
Code:
#define LEDR PIN_B4
Then I hit compile on PCWHD and everything went great. I loaded the hex onto my device and tried it... but it DIDN'T WORK.
The led flashes a bit then it stops and then it just stays flashing non-stop. The PS3 boots on with no positive results.
I've checked my device and everything seems fine but here's an EXACT drawing of it, did I make any mistakes?

Note: The led and resistor ARE in series to the ground line. I just didn't draw it in an obvious manner.
Any ideas? I'm stuck here