change default spooling speed

This commit is contained in:
2022-04-04 15:24:24 +02:00
parent 5a85471ca5
commit 22a8b37713

View File

@@ -25,10 +25,11 @@ void timer5_init()
TCCR5A |= (1<<COM5C1); TCCR5A |= (1<<COM5C1);
TCCR5B |= _BV(WGM53); TCCR5B |= _BV(WGM53);
ICR5 = 500; ICR5 = 1000;
OCR5C = 250; OCR5C = 500;
DDRL |= 1 << 5; DDRL |= 1 << 5;
} }
void do_spule(){ void do_spule(){