8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d9e37c commit 53ea273Copy full SHA for 53ea273
examples/frBlinkPrint/frBlinkPrint.ino
@@ -12,6 +12,7 @@ TaskHandle_t blink;
12
//------------------------------------------------------------------------------
13
// high priority for blinking LED
14
static void vLEDFlashTask(void *pvParameters) {
15
+ UNUSED(pvParameters);
16
pinMode(LED_PIN, OUTPUT);
17
18
// Flash led every 200 ms.
@@ -31,6 +32,7 @@ static void vLEDFlashTask(void *pvParameters) {
31
32
}
33
34
static void vPrintTask(void *pvParameters) {
35
36
while (1) {
37
// Sleep for one second.
38
vTaskDelay(configTICK_RATE_HZ);
0 commit comments