From: Philipp Klaus Date: Fri, 2 Jun 2017 11:33:16 +0000 (+0200) Subject: Pt100: flash LED2 on timer interrupt X-Git-Url: https://jspc29.x-matter.uni-frankfurt.de/git/?a=commitdiff_plain;h=bb71559f830050b30eed00bd608f9258f39d584d;p=avr.git Pt100: flash LED2 on timer interrupt --- diff --git a/pt100/main.c b/pt100/main.c index 7fa89f7..aa795c1 100644 --- a/pt100/main.c +++ b/pt100/main.c @@ -179,6 +179,8 @@ void init(void) { * 500 Hz ticks *********************/ ISR(TIMER0_COMPA_vect) { + LED2_ON(); + LED2_OFF(); if(++time == calib_settings.period) { time = 0; measurement_active = 1;