diff options
author | Joel Bodenmann <joel@unormal.org> | 2012-11-19 20:26:19 +0100 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2012-11-19 20:26:19 +0100 |
commit | 93fdd5dcdbfc4b4b6c41e0b7836ce754cba7f0a1 (patch) | |
tree | bcea54076fc499eb39651ab4e4a0a52def48aae2 /include | |
parent | 8515ed53f517eb497ca619ec2c24429a9dcd580e (diff) | |
download | uGFX-93fdd5dcdbfc4b4b6c41e0b7836ce754cba7f0a1.tar.gz uGFX-93fdd5dcdbfc4b4b6c41e0b7836ce754cba7f0a1.tar.bz2 uGFX-93fdd5dcdbfc4b4b6c41e0b7836ce754cba7f0a1.zip |
doxygen of gtimer
Diffstat (limited to 'include')
-rw-r--r-- | include/gtimer.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/gtimer.h b/include/gtimer.h index 2946e0ea..55bb209b 100644 --- a/include/gtimer.h +++ b/include/gtimer.h @@ -69,7 +69,9 @@ // A callback function (executed in a thread context)
typedef void (*GTimerFunction)(void *param);
-// A GTimer structure.
+/**
+ * @brief A GTimer structure
+ */
typedef struct GTimer_t {
GTimerFunction fn;
void *param;
@@ -78,7 +80,7 @@ typedef struct GTimer_t { uint16_t flags;
struct GTimer_t *next;
struct GTimer_t *prev;
- } GTimer;
+} GTimer;
/*===========================================================================*/
/* External declarations. */
|