From 76ac1ee3bba2a20ded7ea12394af0a633be25ff9 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Wed, 23 Dec 2015 07:29:47 +0100 Subject: score: Fix simple timecounter support Update #2502. --- doc/bsp_howto/clock.t | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/bsp_howto/clock.t b/doc/bsp_howto/clock.t index f58b89850f..2891bb2807 100644 --- a/doc/bsp_howto/clock.t +++ b/doc/bsp_howto/clock.t @@ -89,6 +89,13 @@ static uint32_t some_tc_get( rtems_timecounter_simple *tc ) return some.counter; @} +static void some_tc_at_tick( rtems_timecounter_simple *tc ) +@{ + /* + * Do work necessary at the clock tick interrupt, e.g. clear a pending flag. + */ +@} + static bool some_tc_is_pending( rtems_timecounter_simple *tc ) @{ return some.is_pending; @@ -105,7 +112,11 @@ static uint32_t some_tc_get_timecount( struct timecounter *tc ) static void some_tc_tick( void ) @{ - rtems_timecounter_simple_downcounter_tick( &some_tc, some_tc_get ); + rtems_timecounter_simple_downcounter_tick( + &some_tc, + some_tc_get, + some_tc_at_tick + ); @} static void some_support_initialize_hardware( void ) -- cgit v1.2.3