I'm having trouble uploading basic sample sketches to my arduino Lilypad. It takes a really long time to upload (1-3 minutes) after compiling. The IDE shows that the sketch has been uploaded, however, the console shows nothing. Everytime I plug in my board, the light keeps blinking, but nothing else happens.
After failing to see any sample sketch working, I tried with this simple test, and it still didn't work.
void setup() {
Serial.begin(9600);
}
void loop() {
Serial.println(1);
}
So far I've checked the port, that the right board is selected and I've installed the latest drivers for my FTDI conversor (mini usb to TTL FTDI FT232RL). These are the error mesagges:
Arduino:1.8.14 Hourly Build 2020/09/23 10:35 (Mac OS X), Tarjeta:"LilyPad Arduino, ATmega328P"
avrdude: stk500_getsync() attempt 1 of 10: not in sync: resp=0x00
avrdude: stk500_getsync() attempt 2 of 10: not in sync: resp=0x00
avrdude: stk500_getsync() attempt 3 of 10: not in sync: resp=0x00
avrdude: stk500_getsync() attempt 4 of 10: not in sync: resp=0xff
avrdude: stk500_getsync() attempt 5 of 10: not in sync: resp=0x00
avrdude: stk500_getsync() attempt 6 of 10: not in sync: resp=0x00
avrdude: stk500_getsync() attempt 7 of 10: not in sync: resp=0x00
avrdude: stk500_getsync() attempt 8 of 10: not in sync: resp=0x00
avrdude: stk500_getsync() attempt 9 of 10: not in sync: resp=0x00
avrdude: stk500_getsync() attempt 10 of 10: not in sync: resp=0xfe
avrdude: ser_send(): write error: Device not configured
avrdude: ser_send(): write error: Device not configured
avrdude: ser_recv(): read error: Device not configured
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 1 of 10: not in sync: resp=0x00
avrdude: ser_send(): write error: Device not configured
avrdude: ser_recv(): read error: Device not configured
avrdude: stk500_recv(): programmer is not responding
And so on.
Any ideas? Thanks for your help.