Lines Matching defs:period
29 * @brief Declares the <b>Task</b> class of the graphics module, which provides functions for setting the running period
46 * This class provides functions for setting the running period and time of a task.
59 * @brief A constructor used to create a <b>Task</b> instance with the specified running period.
60 * @param period Indicates the running period of this task.
62 Task(uint32_t period) : period_(period), lastRun_(0) {}
70 * @brief Sets the running period for this task.
71 * @param period Indicates the running period to set.
73 void SetPeriod(uint32_t period)
75 period_ = period;
88 * @brief Obtains the running period of this task.
89 * @return Returns the running period.
121 uint32_t period_; /* call period in ms unit */