No, the jumper is correctly selected. I have tried with the same code in another board, this one with a ATMEGA8 and it works, but with the ATMEGA168, there is no way. I've also selected for the IDE de correct version of the chip before programing it!
I've buy it at PCB Europe, and I've the same problem with this two arduinos. The old one based on ATMEGA8 works perfect...
Any idea?
This is the code I'm using:
///////////
void setup()
{
pinMode(10, OUTPUT);
pinMode(11, OUTPUT);
}
void loop()
{
digitalWrite(10,HIGH);
digitalWrite(11,LOW);
}
///////////