File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -613,7 +613,7 @@ void vPortEndScheduler( void )
613613 /* It is unlikely that the ATmega port will get stopped. If required simply
614614 * disable the tick interrupt here. */
615615
616- wdt_disable (); /* disable Watchdog Timer */
616+ wdt_disable (); /* disable Watchdog Timer */
617617}
618618/*-----------------------------------------------------------*/
619619
Original file line number Diff line number Diff line change @@ -256,8 +256,8 @@ typedef enum
256256 * <pre>
257257 * BaseType_t xTaskCreate(
258258 * TaskFunction_t pxTaskCode,
259- * const char *pcName,
260- * configSTACK_DEPTH_TYPE usStackDepth,
259+ * const char * const pcName,
260+ * const configSTACK_DEPTH_TYPE usStackDepth,
261261 * void *pvParameters,
262262 * UBaseType_t uxPriority,
263263 * TaskHandle_t *pxCreatedTask
@@ -358,8 +358,8 @@ typedef enum
358358 * task. h
359359 * <pre>
360360* TaskHandle_t xTaskCreateStatic( TaskFunction_t pxTaskCode,
361- * const char *pcName,
362- * uint32_t ulStackDepth,
361+ * const char * const pcName,
362+ * const configSTACK_DEPTH_TYPE ulStackDepth,
363363 * void *pvParameters,
364364 * UBaseType_t uxPriority,
365365 * StackType_t *puxStackBuffer,
You can’t perform that action at this time.
0 commit comments