File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -153,10 +153,10 @@ BaseType_t MPU_xTaskGetSchedulerState( void ) FREERTOS_SYSTEM_CALL;
153
153
StaticTask_t * const pxTaskBuffer ) FREERTOS_SYSTEM_CALL ;
154
154
void MPU_vTaskDelete ( TaskHandle_t xTaskToDelete ) FREERTOS_SYSTEM_CALL ;
155
155
void MPU_vTaskPrioritySet ( TaskHandle_t xTask ,
156
- UBaseType_t uxNewPriority ) FREERTOS_SYSTEM_CALL ;
156
+ UBaseType_t uxNewPriority ) FREERTOS_SYSTEM_CALL ;
157
157
TaskHandle_t MPU_xTaskGetHandle ( const char * pcNameToQuery ) FREERTOS_SYSTEM_CALL ;
158
158
BaseType_t MPU_xTaskCallApplicationTaskHook ( TaskHandle_t xTask ,
159
- void * pvParameter ) FREERTOS_SYSTEM_CALL ;
159
+ void * pvParameter ) FREERTOS_SYSTEM_CALL ;
160
160
void MPU_vTaskGetRunTimeStatistics ( char * pcWriteBuffer ,
161
161
size_t uxBufferLength ) FREERTOS_SYSTEM_CALL ;
162
162
void MPU_vTaskListTasks ( char * pcWriteBuffer ,
Original file line number Diff line number Diff line change 86
86
* the application can use opaque handles maintained in mpu_wrappers.c
87
87
* with all the APIs. */
88
88
#if ( configUSE_MPU_WRAPPERS_V1 == 1 )
89
- /* These are not needed in v2 because they do not take a task
90
- * handle and therefore, no lookup is needed. Needed in v1 because
91
- * these are available as system calls in v1. */
89
+
90
+ /* These are not needed in v2 because they do not take a task
91
+ * handle and therefore, no lookup is needed. Needed in v1 because
92
+ * these are available as system calls in v1. */
92
93
#define vTaskGetRunTimeStatistics MPU_vTaskGetRunTimeStatistics
93
94
#define vTaskListTasks MPU_vTaskListTasks
94
95
#define vTaskSuspendAll MPU_vTaskSuspendAll
You can’t perform that action at this time.
0 commit comments