aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Scheduler
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-03-29 13:32:36 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-03-29 13:32:36 +0000
commit9257f4ab8ea8ade1df5b576c114f715302051cc6 (patch)
treed3c30d0fec346836104080345693ac8d1f157cc8 /LUFA/Scheduler
parent0557676013f41487701a8951d3dbb4aee3117882 (diff)
downloadlufa-9257f4ab8ea8ade1df5b576c114f715302051cc6.tar.gz
lufa-9257f4ab8ea8ade1df5b576c114f715302051cc6.tar.bz2
lufa-9257f4ab8ea8ade1df5b576c114f715302051cc6.zip
Add briefs for the library core structures.
Diffstat (limited to 'LUFA/Scheduler')
-rw-r--r--LUFA/Scheduler/Scheduler.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/LUFA/Scheduler/Scheduler.h b/LUFA/Scheduler/Scheduler.h
index ed0497115..024a2c22f 100644
--- a/LUFA/Scheduler/Scheduler.h
+++ b/LUFA/Scheduler/Scheduler.h
@@ -165,7 +165,10 @@
*/
typedef uint16_t SchedulerDelayCounter_t;
- /** Structure for holding a single task's information in the scheduler task list. */
+ /** \brief Scheduler Task List Entry Structure.
+ *
+ * Structure for holding a single task's information in the scheduler task list.
+ */
typedef struct
{
TaskPtr_t Task; /**< Pointer to the task to execute. */