File tree Expand file tree Collapse file tree 4 files changed +10
-2
lines changed
Expand file tree Collapse file tree 4 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,9 @@ TaskTimeToUs KEYWORD2
3030TASK_DECLARE_BEGIN KEYWORD2
3131TASK_DECLARE_FUNCTION KEYWORD2
3232TASK_DECLARE_END KEYWORD2
33+ setTimeInterval KEYWORD2
34+ getTimeInterval KEYWORD2
35+ getTaskState KEYWORD2
3336
3437#######################################
3538# Constants (LITERAL1)
Original file line number Diff line number Diff line change 77 "type" : " git" ,
88 "url" : " https://github.com/Makuna/Task.git"
99 },
10- "version" : " 1.1.5 " ,
10+ "version" : " 1.1.6 " ,
1111 "frameworks" : " arduino" ,
1212 "platforms" : " *"
1313}
Original file line number Diff line number Diff line change 11name =Task by Makuna
2- version =1.1.5
2+ version =1.1.6
33author =Michael C. Miller (makuna@live.com)
44maintainer =Michael C. Miller (makuna@live.com)
55sentence =A library that makes creating complex mulitple task projects easy.
Original file line number Diff line number Diff line change @@ -76,6 +76,11 @@ class Task
7676 return _timeInterval;
7777 }
7878
79+ TaskState getTaskState ()
80+ {
81+ return _taskState;
82+ }
83+
7984protected:
8085 virtual bool OnStart () { return true ; };
8186 virtual void OnStop () {};
You can’t perform that action at this time.
0 commit comments