The unified diff between revisions [8760ae92..] and [dea51752..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'timer.h'

#
# old_revision [8760ae9232295422550b79f09e55122390704b3c]
# new_revision [dea51752ff3061ddca80de6685b04dac53ac77e1]
#
# patch "timer.h"
#  from [95b887ab46f9dbd390b5a152bc1dc36793949c19]
#    to [c2e75d36a6314f29f490f12d9d98f4bb50b843fc]
#
============================================================
--- timer.h	95b887ab46f9dbd390b5a152bc1dc36793949c19
+++ timer.h	c2e75d36a6314f29f490f12d9d98f4bb50b843fc
@@ -11,6 +11,7 @@ void timer_delay_clocks(unsigned int clo
 void init_timer(void);
 unsigned int timer_read(void);
 void timer_delay_clocks(unsigned int clocks);
+void timer_set_period(unsigned int period);
 
 #define timer_delay_us(x) timer_delay_clocks((x)*TIMER_US)
 #define timer_delay_ms(x) timer_delay_clocks((x)*TIMER_MS)