OK, so I bought a dev board off of ebay a while ago, and I'm completely dumb when it comes to anything that involves code... I'm a hardware kind of guy. I'd like to learn, but have no clue where to start.
Anyway, the point of this thread is to ask what hex is compatible with my board, or what I would have to change to make it compatible with my board. Here's the link for the board http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&item=140457346940 (have to scroll down a little way)
The first time I got it, I had to update the payload and must've flashed it with the wrong hex, because it didn't work, and then I couldn't reprogram it until I jumped pin 24 to the USB casing to reset it. I just want to either find a compatible hex or find out how to create my own so I don't have to contact this guy everytime there is a payload update.
Here is the info sheet:
Any advice is much appreciated.AT90USB162 dev board
Use free Atmel FLIP utility to program. Download program and documents from the Atmel site. Press button while connected to PC to start bootloader.
DEVELOPERS NOTE:
The dev board has no RESET button so you must include the following in your main program to be able to access the bootloader with the tact switch:
DECLARE BEFORE MAIN LOOP:
void (*start_bootloader) (void)=(void (*)(void))0x1800;
IN MAIN LOOP:
if((PIND & (1 << 7)) == 0)
{
TIMSK1=0; //Disable timer interrupt
USB_ShutDown(); //Shutdown USB
_delay_ms(100); //Wait
(*start_bootloader)();
}
13261 HeyManHRU
13236 PS3 News
11307 elser1
11169 oVERSoLDiER
9248 GrandpaHomer
8628 Tidusnake666
7968 saviour07
7340 condorstrike
7258 deank
6858 OGroteKoning
25118 PS3 News
5279 Starlight
2964 HeyManHRU
2183 elser1
2174 CJPC
1815 cfwprophet
1756 her0
1573 oVERSoLDiER
1294 GrandpaHomer
1080 barrybarryk




