mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-23 00:00:01 +01:00
22 lines
No EOL
447 B
C
22 lines
No EOL
447 B
C
/** 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 2017, Steffen Vogel
|
|
**********************************************************************************/
|
|
|
|
/** @addtogroup fpga VILLASfpga
|
|
* @{
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <xilinx/xtmrctr.h>
|
|
|
|
struct timer {
|
|
XTmrCtr inst;
|
|
};
|
|
|
|
/** @} */ |