Skip to content

Commit

Permalink
modified: examples/blink/blink.ino
Browse files Browse the repository at this point in the history
	modified:   examples/multi-blink/multi-blink.ino
  • Loading branch information
MicroBeaut committed May 1, 2024
1 parent 8cc56a5 commit 4fb1efc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/blink/blink.ino
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ TaskMember taskMember = {500};
// uint16_t period - in milliseconds
// TaskMember *tasks - Pointer of TaskMember
// uint16_t size - Number of Tasks
// It is mandatory to name the TCone declaration as "Task". No other name should be used.
// It is mandatory to name the TCone declaration as "Tasks". No other name should be used.
TCone Tasks(TASK_PERIOD, &taskMember, TASK_SIZE);

void setup() {
Expand Down
2 changes: 1 addition & 1 deletion examples/multi-blink/multi-blink.ino
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ TaskMember taskMember[TASK_SIZE] = {
// uint16_t period - in milliseconds
// TaskMember *tasks - Pointer of TaskMember
// uint16_t size - Number of Tasks
// It is mandatory to name the TCone declaration as "Task". No other name should be used.
// It is mandatory to name the TCone declaration as "Tasks". No other name should be used.
TCone Tasks(TASK_PERIOD, taskMember, TASK_SIZE);

// Define the 'ledPins' as a constant array.
Expand Down

0 comments on commit 4fb1efc

Please sign in to comment.