@@ -206,7 +206,7 @@ static void prvTaskExitError( void );
206
206
* FPU registers to be saved on interrupt entry their IRQ handler must be
207
207
* called vApplicationIRQHandler().
208
208
*/
209
- void vApplicationFPUSafeIRQHandler ( uint32_t ulICCIAR ) __attribute__(( weak ) );
209
+ void vApplicationFPUSafeIRQHandler ( uint32_t ulICCIAR ) __attribute__( ( weak ) );
210
210
211
211
/*-----------------------------------------------------------*/
212
212
@@ -297,24 +297,24 @@ StackType_t * pxPortInitialiseStack( StackType_t * pxTopOfStack,
297
297
* pxTopOfStack = ( StackType_t ) 0x01010101 ; /* R1 */
298
298
pxTopOfStack -- ;
299
299
* pxTopOfStack = ( StackType_t ) pvParameters ; /* R0 */
300
- pxTopOfStack -- ;
301
300
302
301
/* The task will start with a critical nesting count of 0 as interrupts are
303
302
* enabled. */
303
+ pxTopOfStack -- ;
304
304
* pxTopOfStack = portNO_CRITICAL_NESTING ;
305
305
306
306
#if ( configUSE_TASK_FPU_SUPPORT == 1 )
307
307
{
308
- /* The task will start without a floating point context. A task that
309
- uses the floating point hardware must call vPortTaskUsesFPU() before
310
- executing any floating point instructions. */
308
+ /* The task will start without a floating point context. A task that
309
+ * uses the floating point hardware must call vPortTaskUsesFPU() before
310
+ * executing any floating point instructions. */
311
311
pxTopOfStack -- ;
312
312
* pxTopOfStack = portNO_FLOATING_POINT_CONTEXT ;
313
313
}
314
314
#elif ( configUSE_TASK_FPU_SUPPORT == 2 )
315
315
{
316
- /* The task will start with a floating point context. Leave enough
317
- space for the registers - and ensure they are initialized to 0. */
316
+ /* The task will start with a floating point context. Leave enough
317
+ * space for the registers - and ensure they are initialized to 0. */
318
318
pxTopOfStack -= portFPU_REGISTER_WORDS ;
319
319
memset ( pxTopOfStack , 0x00 , portFPU_REGISTER_WORDS * sizeof ( StackType_t ) );
320
320
0 commit comments