RTEMS 5.2
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
gptimer.h
1/* GPTIMER and GRTIMER timer driver
2 *
3 * COPYRIGHT (c) 2015.
4 * Cobham Gaisler.
5 *
6 * The license and distribution terms for this file may be
7 * found in found in the file LICENSE in this distribution or at
8 * http://www.rtems.org/license/LICENSE.
9 *
10 */
11
12#ifndef __GPTIMER_H__
13#define __GPTIMER_H__
14
15#ifdef __cplusplus
16extern "C" {
17#endif
18
19/* The GPTIMER_INFO_AVAIL define set from the BSP bsp.h configures if the
20 * Driver manager info interface is built.
21 */
22
23/* Register GPTIMER and GRTIMER driver to Driver Manager */
24void gptimer_register_drv (void);
25
26#ifdef __cplusplus
27}
28#endif
29
30#endif