Difference Between a butterfly AVR109 a and AVR910 device

Help!

I have a LilyPad Arduino USB Board. Whenever I try to Upload the the sequence below into my LilyPad, I have issues.

/ This is my RISEnet code
void setup ()
{
pinMode (11, OUTPUT); // sets pin 11 as output (LED)
pinMode(10, OUTPUT); // sets pin 10 as output (LED)
}
void loop ()
{
for (int i=0; i<=255; i++) // variable i counts 0 to 255
{
analogWrite (10, i); // sends variable power to pin 10
delay(10); // waits 10 milliseconds
}
digitalWrite (11, HIGH); // turns on pin 11 (LED on)
delay(1000); // waits 1000 milliseconds
digitalWrite (11, LOW); // turns pin 11 off (LED off)
delay(1000); // waits 1000 milliseconds

However, the system is able to verify that the code is accurate. I've attached a screenshot of what happens when I attempt to upload the code.

HELP!