1234567891011121314151617181920212223 |
- /*!
- * \file include/utils/time.h
- * \brief Time handling utilities
- *
- * \author xythobuz
- */
-
- #ifndef _UTILS_TIME_H_
- #define _UTILS_TIME_H_
-
- /*!
- * \brief Read the system timer
- * \returns number of ticks
- */
- unsigned long systemTimerGet();
-
- /*!
- * \brief Reset the system timer
- */
- void systemTimerReset();
-
- #endif
|