From 4fb1efc9c120a45d1956fe5c56026d3dc75326e6 Mon Sep 17 00:00:00 2001 From: "Montree.Hamarn" Date: Thu, 2 May 2024 01:06:14 +0700 Subject: [PATCH] modified: examples/blink/blink.ino modified: examples/multi-blink/multi-blink.ino --- examples/blink/blink.ino | 2 +- examples/multi-blink/multi-blink.ino | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/blink/blink.ino b/examples/blink/blink.ino index d5459f7..44091e9 100644 --- a/examples/blink/blink.ino +++ b/examples/blink/blink.ino @@ -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() { diff --git a/examples/multi-blink/multi-blink.ino b/examples/multi-blink/multi-blink.ino index 14ea874..9f673a7 100644 --- a/examples/multi-blink/multi-blink.ino +++ b/examples/multi-blink/multi-blink.ino @@ -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.