Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 53ea273

Browse filesBrowse files
committed
Fix unused parameters in sketch
Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
1 parent 9d9e37c commit 53ea273
Copy full SHA for 53ea273

File tree

Expand file treeCollapse file tree

1 file changed

+2
-0
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-0
lines changed

‎examples/frBlinkPrint/frBlinkPrint.ino

Copy file name to clipboardExpand all lines: examples/frBlinkPrint/frBlinkPrint.ino
+2Lines changed: 2 additions & 0 deletions
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.