source: rtems/c/src/lib/libbsp/arm/lm3s69xx/timer/timer.c @ e263c16

4.115
Last change on this file since e263c16 was e263c16, checked in by Sebastian Huber <sebastian.huber@…>, on 09/24/11 at 13:23:42

2011-09-24 Sebastian Huber <sebastian.huber@…>

  • 0001-Fixed-interrupt-handling-for-ARMv7M.patch, 0002-Fixed-system-handler-priority-register-access.patch, 0003-Disable-priority_mask-unused-for-NVIC.patch, 0004-Typo.patch, 0005-Evil-hack-for-BASEPRI-BASEPRI_MAX.patch, 0006-Evil-hack-to-increase-the-RAM-size.patch, bsp_specs, ChangeLog?, clock/clock-config.c, configure.ac, console/console-config.c, console/uart.c, .cvsignore, include/bsp.h, include/.cvsignore, include/irq.h, include/lm3s69xx.h, include/uart.h, irq/irq.c, make/custom/lm3s6965.cfg, make/custom/lm3s69xx.inc, Makefile.am, README, start/start.S, startup/bspreset.c, startup/bspstart.c, startup/bspstarthook.c, startup/linkcmds.lm3s6965, timer/timer.c: New files.
  • Property mode set to 100644
File size: 709 bytes
Line 
1/*
2 * Copyright (c) 2011 Sebastian Huber.  All rights reserved.
3 *
4 *  embedded brains GmbH
5 *  Obere Lagerstr. 30
6 *  82178 Puchheim
7 *  Germany
8 *  <rtems@embedded-brains.de>
9 *
10 * The license and distribution terms for this file may be
11 * found in the file LICENSE in this distribution or at
12 * http://www.rtems.com/license/LICENSE.
13 */
14
15#include <rtems/btimer.h>
16
17static bool benchmark_timer_find_average_overhead = false;
18
19void benchmark_timer_initialize(void)
20{
21  /* TODO */
22}
23
24uint32_t benchmark_timer_read(void)
25{
26  /* TODO */
27  return 0;
28}
29
30void benchmark_timer_disable_subtracting_average_overhead(
31  bool find_average_overhead
32)
33{
34  benchmark_timer_find_average_overhead = find_average_overhead;
35}
Note: See TracBrowser for help on using the repository browser.