diff options
author | Keith Packard <keithp@keithp.com> | 2012-10-30 19:56:51 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-10-30 21:31:27 -0700 |
commit | fcdaa0d748058a7f52a1bdc1a1627dc394762e5a (patch) | |
tree | edf4e045be6b7bc9612cfb7c4d74b89e1f05b004 /src | |
parent | af8cb40851a5cf5e3bd06ddd85e4e2df16bfbad2 (diff) |
altos/attiny: Remove debugging code which frobs PB1
This was clearly stuck there to debug something; not a good idea...
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/attiny/ao_clock.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/attiny/ao_clock.c b/src/attiny/ao_clock.c index b40f59d4..22de8e99 100644 --- a/src/attiny/ao_clock.c +++ b/src/attiny/ao_clock.c @@ -22,7 +22,6 @@ static volatile AO_TICK_TYPE ao_wakeup_count; ISR(TIMER1_COMPA_vect) { - PORTB ^= 2; ++ao_tick_count; if ((int16_t) (ao_tick_count - ao_wakeup_count) >= 0) ao_wakeup((void *) &ao_tick_count); |