mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-27 15:00:16 +00:00
* sp02/task1.c, sp02/task2.c, sp02/task3.c, sp03/task2.c, sp05/task1.c, sp05/task2.c, sp05/task3.c, sp06/task1.c, sp06/task2.c, sp09/screen02.c, sp09/screen04.c, sp09/screen06.c, sp09/screen07.c, sp09/screen10.c, sp09/screen12.c, sp09/screen13.c, sp09/screen14.c, sp11/task1.c, sp11/task2.c, sp12/pridrv.c, sp12/pritask.c, sp12/task1.c, sp13/task1.c, sp13/task2.c, sp14/task1.c, sp16/task1.c, sp16/task4.c, sp19/fptask.c, sp19/task1.c, sp22/task1.c, sp24/task1.c, sp26/task1.c, sp29/init.c, sp30/task1.c, sp31/task1.c, sp33/init.c, sp45/init.c, sp46/init.c, sp50/init.c, spintrcritical06/init.c, spwatchdog/task1.c: Eliminate test routines TICKS_PER_SECOND and get_ticks_per_second() in favor of new rtems_clock_get_ticks_per_second().
93 lines
2.0 KiB
C
93 lines
2.0 KiB
C
/*
|
|
* COPYRIGHT (c) 1989-2009.
|
|
* On-Line Applications Research Corporation (OAR).
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rtems.com/license/LICENSE.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#include <tmacros.h>
|
|
|
|
volatile int Fired;
|
|
volatile bool timerRan;
|
|
|
|
rtems_timer_service_routine Timer_Routine( rtems_id id, void *ignored )
|
|
{
|
|
rtems_status_code sc;
|
|
|
|
Fired++;
|
|
timerRan = true;
|
|
|
|
sc = rtems_timer_server_fire_after(
|
|
id,
|
|
rtems_clock_get_ticks_per_second(),
|
|
Timer_Routine,
|
|
NULL
|
|
);
|
|
}
|
|
|
|
rtems_task Init(
|
|
rtems_task_argument argument
|
|
)
|
|
{
|
|
rtems_status_code sc;
|
|
rtems_id timer1;
|
|
struct timespec uptime;
|
|
|
|
puts( "\n\n*** TEST 50 ***" );
|
|
|
|
sc = rtems_timer_initiate_server(
|
|
1,
|
|
RTEMS_MINIMUM_STACK_SIZE,
|
|
RTEMS_DEFAULT_ATTRIBUTES
|
|
);
|
|
directive_failed( sc, "rtems_timer_initiate_server" );
|
|
|
|
sc = rtems_timer_create(rtems_build_name( 'T', 'M', 'R', '1' ), &timer1);
|
|
directive_failed( sc, "rtems_timer_create" );
|
|
|
|
Fired = 0;
|
|
timerRan = false;
|
|
|
|
Timer_Routine(timer1, NULL);
|
|
|
|
while (1) {
|
|
sc = rtems_task_wake_after( 10 );
|
|
directive_failed( sc, "rtems_task_wake_after" );
|
|
|
|
if ( timerRan == true ) {
|
|
timerRan = false;
|
|
|
|
sc = rtems_clock_get_uptime( &uptime );
|
|
directive_failed( sc, "rtems_clock_get_uptime" );
|
|
|
|
printf( "Timer fired at %d\n", uptime.tv_sec );
|
|
}
|
|
|
|
if ( Fired >= 10 ) {
|
|
puts( "*** END OF TEST 50 ***" );
|
|
rtems_test_exit( 0 );
|
|
}
|
|
/* technically the following is a critical section */
|
|
}
|
|
}
|
|
|
|
|
|
/**************** START OF CONFIGURATION INFORMATION ****************/
|
|
|
|
#define CONFIGURE_INIT
|
|
#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
|
|
#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
|
|
|
|
#define CONFIGURE_MAXIMUM_TASKS 2
|
|
#define CONFIGURE_MAXIMUM_TIMERS 1
|
|
|
|
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
|
|
|
|
#include <rtems/confdefs.h>
|
|
|
|
/**************** END OF CONFIGURATION INFORMATION ****************/
|