Skip to content

Commit 53ea273

Browse files
committed
Fix unused parameters in sketch
Signed-off-by: Frederic Pillon <[email protected]>
1 parent 9d9e37c commit 53ea273

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

examples/frBlinkPrint/frBlinkPrint.ino

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ TaskHandle_t blink;
1212
//------------------------------------------------------------------------------
1313
// high priority for blinking LED
1414
static void vLEDFlashTask(void *pvParameters) {
15+
UNUSED(pvParameters);
1516
pinMode(LED_PIN, OUTPUT);
1617

1718
// Flash led every 200 ms.
@@ -31,6 +32,7 @@ static void vLEDFlashTask(void *pvParameters) {
3132
}
3233
//------------------------------------------------------------------------------
3334
static void vPrintTask(void *pvParameters) {
35+
UNUSED(pvParameters);
3436
while (1) {
3537
// Sleep for one second.
3638
vTaskDelay(configTICK_RATE_HZ);

0 commit comments

Comments
 (0)