diff --git a/include/mpu_prototypes.h b/include/mpu_prototypes.h index c6d7965a3..cacadc6c6 100644 --- a/include/mpu_prototypes.h +++ b/include/mpu_prototypes.h @@ -153,10 +153,10 @@ BaseType_t MPU_xTaskGetSchedulerState( void ) FREERTOS_SYSTEM_CALL; StaticTask_t * const pxTaskBuffer ) FREERTOS_SYSTEM_CALL; void MPU_vTaskDelete( TaskHandle_t xTaskToDelete ) FREERTOS_SYSTEM_CALL; void MPU_vTaskPrioritySet( TaskHandle_t xTask, - UBaseType_t uxNewPriority ) FREERTOS_SYSTEM_CALL; + UBaseType_t uxNewPriority ) FREERTOS_SYSTEM_CALL; TaskHandle_t MPU_xTaskGetHandle( const char * pcNameToQuery ) FREERTOS_SYSTEM_CALL; BaseType_t MPU_xTaskCallApplicationTaskHook( TaskHandle_t xTask, - void * pvParameter ) FREERTOS_SYSTEM_CALL; + void * pvParameter ) FREERTOS_SYSTEM_CALL; void MPU_vTaskGetRunTimeStatistics( char * pcWriteBuffer, size_t uxBufferLength ) FREERTOS_SYSTEM_CALL; void MPU_vTaskListTasks( char * pcWriteBuffer, diff --git a/include/mpu_wrappers.h b/include/mpu_wrappers.h index 4a1e37ac6..4513ca996 100644 --- a/include/mpu_wrappers.h +++ b/include/mpu_wrappers.h @@ -86,9 +86,10 @@ * the application can use opaque handles maintained in mpu_wrappers.c * with all the APIs. */ #if ( configUSE_MPU_WRAPPERS_V1 == 1 ) - /* These are not needed in v2 because they do not take a task - * handle and therefore, no lookup is needed. Needed in v1 because - * these are available as system calls in v1. */ + +/* These are not needed in v2 because they do not take a task + * handle and therefore, no lookup is needed. Needed in v1 because + * these are available as system calls in v1. */ #define vTaskGetRunTimeStatistics MPU_vTaskGetRunTimeStatistics #define vTaskListTasks MPU_vTaskListTasks #define vTaskSuspendAll MPU_vTaskSuspendAll