diff options
author | Joel Bodenmann <joel@unormal.org> | 2014-02-02 19:55:20 +0100 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2014-02-02 19:55:20 +0100 |
commit | d2de6c351785f323fd4b2a4e337a95bda4c9a626 (patch) | |
tree | 325a553eeba195f51432d15358244f215b970289 /include | |
parent | 78254345917b3521e5005ecebc8d4f4a002b7a87 (diff) | |
download | uGFX-d2de6c351785f323fd4b2a4e337a95bda4c9a626.tar.gz uGFX-d2de6c351785f323fd4b2a4e337a95bda4c9a626.tar.bz2 uGFX-d2de6c351785f323fd4b2a4e337a95bda4c9a626.zip |
implemented gtimerDeinit()
Diffstat (limited to 'include')
-rw-r--r-- | include/gtimer/gtimer.h | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/include/gtimer/gtimer.h b/include/gtimer/gtimer.h index 14de352f..06072c7c 100644 --- a/include/gtimer/gtimer.h +++ b/include/gtimer/gtimer.h @@ -68,13 +68,22 @@ extern "C" { #endif /** - * @brief Initialise a timer. + * @brief Initialise a timer * - * @param[in] pt pointer to a GTimer structure + * @param[in] pt Pointer to a GTimer structure * * @api */ -void gtimerInit(GTimer *pt); +void gtimerInit(GTimer* pt); + +/** + * @brief Deinitialise a timer + * + * @param[in] pt Pointer to a GTimer structure + * + * @api + */ +void gtimerDeinit(GTimer* pt); /** * @brief Set a timer going or alter its properties if it is already going. |