2016-06-19 19:23:19 +02:00
|
|
|
/** Timer related helper functions
|
|
|
|
*
|
|
|
|
* These functions present a simpler interface to Xilinx' Timer Counter driver (XTmrCtr_*)
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @author Steffen Vogel <stvogel@eonerc.rwth-aachen.de>
|
|
|
|
* @copyright 2015-2016, Steffen Vogel
|
|
|
|
* This file is part of S2SS. All Rights Reserved. Proprietary and confidential.
|
|
|
|
* Unauthorized copying of this file, via any medium is strictly prohibited.
|
|
|
|
**********************************************************************************/
|
|
|
|
|
2017-02-12 14:04:22 -03:00
|
|
|
#ifndef _FPGA_TIMER_H_
|
|
|
|
#define _FPGA_TIMER_H_
|
2016-06-19 19:23:19 +02:00
|
|
|
|
2016-06-26 15:22:25 +02:00
|
|
|
struct timer {
|
|
|
|
XTmrCtr inst;
|
|
|
|
};
|
|
|
|
|
2017-02-12 14:04:22 -03:00
|
|
|
#endif /* _FPGA_TIMER_H_ */
|