byte i;
void(* softreset) (void) = 0;
void setup() {
//pinMode(1, OUTPUT);
DDRB |= (1 << PB1);
}
void loop() {
PORTB ^= (1 << PB1); //Toggle PB1 1XOR1=0 1XOR0=1
delay(i); //160bytes
i++;
if (i >= 127) {
softreset();
}
}
On 8mhz this works on 1mhz it locks up (Original Digispark v1.11)
On clone both speeds work (v1.11)
Can i dump the clone firmware & upload with micronucleus ?