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
30
30
TASK_DECLARE_BEGIN KEYWORD2
31
31
TASK_DECLARE_FUNCTION KEYWORD2
32
32
TASK_DECLARE_END KEYWORD2
33
+ setTimeInterval KEYWORD2
34
+ getTimeInterval KEYWORD2
35
+ getTaskState KEYWORD2
33
36
34
37
#######################################
35
38
# Constants (LITERAL1)
Original file line number Diff line number Diff line change 7
7
"type" : " git" ,
8
8
"url" : " https://github.com/Makuna/Task.git"
9
9
},
10
- "version" : " 1.1.5 " ,
10
+ "version" : " 1.1.6 " ,
11
11
"frameworks" : " arduino" ,
12
12
"platforms" : " *"
13
13
}
Original file line number Diff line number Diff line change 1
1
name =Task by Makuna
2
- version =1.1.5
2
+ version =1.1.6
3
3
author =Michael C. Miller (
[email protected] )
4
4
maintainer =Michael C. Miller (
[email protected] )
5
5
sentence =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
76
76
return _timeInterval;
77
77
}
78
78
79
+ TaskState getTaskState ()
80
+ {
81
+ return _taskState;
82
+ }
83
+
79
84
protected:
80
85
virtual bool OnStart () { return true ; };
81
86
virtual void OnStop () {};
You can’t perform that action at this time.
0 commit comments