File tree 19 files changed +57
-57
lines changed
19 files changed +57
-57
lines changed Original file line number Diff line number Diff line change @@ -218,7 +218,7 @@ BaseType_t xPortStartScheduler( void )
218
218
{
219
219
#if ( configASSERT_DEFINED == 1 )
220
220
{
221
- volatile uint8_t ulOriginalPriority ;
221
+ volatile uint8_t ucOriginalPriority ;
222
222
volatile uint32_t ulImplementedPrioBits = 0 ;
223
223
volatile uint8_t * const pucFirstUserPriorityRegister = ( uint8_t * ) ( portNVIC_IP_REGISTERS_OFFSET_16 + portFIRST_USER_INTERRUPT_NUMBER );
224
224
volatile uint8_t ucMaxPriorityValue ;
@@ -229,7 +229,7 @@ BaseType_t xPortStartScheduler( void )
229
229
* ensure interrupt entry is as fast and simple as possible.
230
230
*
231
231
* Save the interrupt priority value that is about to be clobbered. */
232
- ulOriginalPriority = * pucFirstUserPriorityRegister ;
232
+ ucOriginalPriority = * pucFirstUserPriorityRegister ;
233
233
234
234
/* Determine the number of priority bits available. First write to all
235
235
* possible bits. */
@@ -310,7 +310,7 @@ BaseType_t xPortStartScheduler( void )
310
310
311
311
/* Restore the clobbered interrupt priority register to its original
312
312
* value. */
313
- * pucFirstUserPriorityRegister = ulOriginalPriority ;
313
+ * pucFirstUserPriorityRegister = ucOriginalPriority ;
314
314
}
315
315
#endif /* configASSERT_DEFINED */
316
316
Original file line number Diff line number Diff line change @@ -237,7 +237,7 @@ BaseType_t xPortStartScheduler( void )
237
237
{
238
238
#if ( configASSERT_DEFINED == 1 )
239
239
{
240
- volatile uint8_t ulOriginalPriority ;
240
+ volatile uint8_t ucOriginalPriority ;
241
241
volatile uint32_t ulImplementedPrioBits = 0 ;
242
242
volatile uint8_t * const pucFirstUserPriorityRegister = ( uint8_t * ) ( portNVIC_IP_REGISTERS_OFFSET_16 + portFIRST_USER_INTERRUPT_NUMBER );
243
243
volatile uint8_t ucMaxPriorityValue ;
@@ -248,7 +248,7 @@ BaseType_t xPortStartScheduler( void )
248
248
* ensure interrupt entry is as fast and simple as possible.
249
249
*
250
250
* Save the interrupt priority value that is about to be clobbered. */
251
- ulOriginalPriority = * pucFirstUserPriorityRegister ;
251
+ ucOriginalPriority = * pucFirstUserPriorityRegister ;
252
252
253
253
/* Determine the number of priority bits available. First write to all
254
254
* possible bits. */
@@ -329,7 +329,7 @@ BaseType_t xPortStartScheduler( void )
329
329
330
330
/* Restore the clobbered interrupt priority register to its original
331
331
* value. */
332
- * pucFirstUserPriorityRegister = ulOriginalPriority ;
332
+ * pucFirstUserPriorityRegister = ucOriginalPriority ;
333
333
}
334
334
#endif /* configASSERT_DEFINED */
335
335
Original file line number Diff line number Diff line change @@ -270,14 +270,14 @@ uint32_t ulAPSR;
270
270
271
271
#if ( configASSERT_DEFINED == 1 )
272
272
{
273
- volatile uint8_t ulOriginalPriority ;
273
+ volatile uint8_t ucOriginalPriority ;
274
274
volatile uint8_t * const pucFirstUserPriorityRegister = ( volatile uint8_t * const ) ( configINTERRUPT_CONTROLLER_BASE_ADDRESS + portINTERRUPT_PRIORITY_REGISTER_OFFSET );
275
275
volatile uint8_t ucMaxPriorityValue ;
276
276
277
277
/* Determine how many priority bits are implemented in the GIC.
278
278
279
279
Save the interrupt priority value that is about to be clobbered. */
280
- ulOriginalPriority = * pucFirstUserPriorityRegister ;
280
+ ucOriginalPriority = * pucFirstUserPriorityRegister ;
281
281
282
282
/* Determine the number of priority bits available. First write to
283
283
all possible bits. */
@@ -300,7 +300,7 @@ uint32_t ulAPSR;
300
300
301
301
/* Restore the clobbered interrupt priority register to its original
302
302
value. */
303
- * pucFirstUserPriorityRegister = ulOriginalPriority ;
303
+ * pucFirstUserPriorityRegister = ucOriginalPriority ;
304
304
}
305
305
#endif /* configASSERT_DEFINED */
306
306
Original file line number Diff line number Diff line change @@ -329,14 +329,14 @@ uint32_t ulAPSR;
329
329
330
330
#if ( configASSERT_DEFINED == 1 )
331
331
{
332
- volatile uint8_t ulOriginalPriority ;
332
+ volatile uint8_t ucOriginalPriority ;
333
333
volatile uint8_t * const pucFirstUserPriorityRegister = ( volatile uint8_t * const ) ( configINTERRUPT_CONTROLLER_BASE_ADDRESS + portINTERRUPT_PRIORITY_REGISTER_OFFSET );
334
334
volatile uint8_t ucMaxPriorityValue ;
335
335
336
336
/* Determine how many priority bits are implemented in the GIC.
337
337
338
338
Save the interrupt priority value that is about to be clobbered. */
339
- ulOriginalPriority = * pucFirstUserPriorityRegister ;
339
+ ucOriginalPriority = * pucFirstUserPriorityRegister ;
340
340
341
341
/* Determine the number of priority bits available. First write to
342
342
all possible bits. */
@@ -357,7 +357,7 @@ uint32_t ulAPSR;
357
357
358
358
/* Restore the clobbered interrupt priority register to its original
359
359
value. */
360
- * pucFirstUserPriorityRegister = ulOriginalPriority ;
360
+ * pucFirstUserPriorityRegister = ucOriginalPriority ;
361
361
}
362
362
#endif /* configASSERT_DEFINED */
363
363
Original file line number Diff line number Diff line change @@ -261,7 +261,7 @@ BaseType_t xPortStartScheduler( void )
261
261
{
262
262
#if ( configASSERT_DEFINED == 1 )
263
263
{
264
- volatile uint8_t ulOriginalPriority ;
264
+ volatile uint8_t ucOriginalPriority ;
265
265
volatile uint32_t ulImplementedPrioBits = 0 ;
266
266
volatile uint8_t * const pucFirstUserPriorityRegister = ( volatile uint8_t * const ) ( portNVIC_IP_REGISTERS_OFFSET_16 + portFIRST_USER_INTERRUPT_NUMBER );
267
267
volatile uint8_t ucMaxPriorityValue ;
@@ -272,7 +272,7 @@ BaseType_t xPortStartScheduler( void )
272
272
* ensure interrupt entry is as fast and simple as possible.
273
273
*
274
274
* Save the interrupt priority value that is about to be clobbered. */
275
- ulOriginalPriority = * pucFirstUserPriorityRegister ;
275
+ ucOriginalPriority = * pucFirstUserPriorityRegister ;
276
276
277
277
/* Determine the number of priority bits available. First write to all
278
278
* possible bits. */
@@ -353,7 +353,7 @@ BaseType_t xPortStartScheduler( void )
353
353
354
354
/* Restore the clobbered interrupt priority register to its original
355
355
* value. */
356
- * pucFirstUserPriorityRegister = ulOriginalPriority ;
356
+ * pucFirstUserPriorityRegister = ucOriginalPriority ;
357
357
}
358
358
#endif /* configASSERT_DEFINED */
359
359
Original file line number Diff line number Diff line change @@ -384,7 +384,7 @@ BaseType_t xPortStartScheduler( void )
384
384
{
385
385
#if ( configASSERT_DEFINED == 1 )
386
386
{
387
- volatile uint8_t ulOriginalPriority ;
387
+ volatile uint8_t ucOriginalPriority ;
388
388
volatile uint32_t ulImplementedPrioBits = 0 ;
389
389
volatile uint8_t * const pucFirstUserPriorityRegister = ( volatile uint8_t * const ) ( portNVIC_IP_REGISTERS_OFFSET_16 + portFIRST_USER_INTERRUPT_NUMBER );
390
390
volatile uint8_t ucMaxPriorityValue ;
@@ -395,7 +395,7 @@ BaseType_t xPortStartScheduler( void )
395
395
* to ensure interrupt entry is as fast and simple as possible.
396
396
*
397
397
* Save the interrupt priority value that is about to be clobbered. */
398
- ulOriginalPriority = * pucFirstUserPriorityRegister ;
398
+ ucOriginalPriority = * pucFirstUserPriorityRegister ;
399
399
400
400
/* Determine the number of priority bits available. First write to all
401
401
* possible bits. */
@@ -476,7 +476,7 @@ BaseType_t xPortStartScheduler( void )
476
476
477
477
/* Restore the clobbered interrupt priority register to its original
478
478
* value. */
479
- * pucFirstUserPriorityRegister = ulOriginalPriority ;
479
+ * pucFirstUserPriorityRegister = ucOriginalPriority ;
480
480
}
481
481
#endif /* configASSERT_DEFINED */
482
482
Original file line number Diff line number Diff line change @@ -304,7 +304,7 @@ BaseType_t xPortStartScheduler( void )
304
304
305
305
#if ( configASSERT_DEFINED == 1 )
306
306
{
307
- volatile uint8_t ulOriginalPriority ;
307
+ volatile uint8_t ucOriginalPriority ;
308
308
volatile uint32_t ulImplementedPrioBits = 0 ;
309
309
volatile uint8_t * const pucFirstUserPriorityRegister = ( volatile uint8_t * const ) ( portNVIC_IP_REGISTERS_OFFSET_16 + portFIRST_USER_INTERRUPT_NUMBER );
310
310
volatile uint8_t ucMaxPriorityValue ;
@@ -315,7 +315,7 @@ BaseType_t xPortStartScheduler( void )
315
315
* ensure interrupt entry is as fast and simple as possible.
316
316
*
317
317
* Save the interrupt priority value that is about to be clobbered. */
318
- ulOriginalPriority = * pucFirstUserPriorityRegister ;
318
+ ucOriginalPriority = * pucFirstUserPriorityRegister ;
319
319
320
320
/* Determine the number of priority bits available. First write to all
321
321
* possible bits. */
@@ -396,7 +396,7 @@ BaseType_t xPortStartScheduler( void )
396
396
397
397
/* Restore the clobbered interrupt priority register to its original
398
398
* value. */
399
- * pucFirstUserPriorityRegister = ulOriginalPriority ;
399
+ * pucFirstUserPriorityRegister = ucOriginalPriority ;
400
400
}
401
401
#endif /* configASSERT_DEFINED */
402
402
Original file line number Diff line number Diff line change @@ -427,7 +427,7 @@ BaseType_t xPortStartScheduler( void )
427
427
428
428
#if ( configASSERT_DEFINED == 1 )
429
429
{
430
- volatile uint8_t ulOriginalPriority ;
430
+ volatile uint8_t ucOriginalPriority ;
431
431
volatile uint32_t ulImplementedPrioBits = 0 ;
432
432
volatile uint8_t * const pucFirstUserPriorityRegister = ( volatile uint8_t * const ) ( portNVIC_IP_REGISTERS_OFFSET_16 + portFIRST_USER_INTERRUPT_NUMBER );
433
433
volatile uint8_t ucMaxPriorityValue ;
@@ -438,7 +438,7 @@ BaseType_t xPortStartScheduler( void )
438
438
* ensure interrupt entry is as fast and simple as possible.
439
439
*
440
440
* Save the interrupt priority value that is about to be clobbered. */
441
- ulOriginalPriority = * pucFirstUserPriorityRegister ;
441
+ ucOriginalPriority = * pucFirstUserPriorityRegister ;
442
442
443
443
/* Determine the number of priority bits available. First write to all
444
444
* possible bits. */
@@ -519,7 +519,7 @@ BaseType_t xPortStartScheduler( void )
519
519
520
520
/* Restore the clobbered interrupt priority register to its original
521
521
* value. */
522
- * pucFirstUserPriorityRegister = ulOriginalPriority ;
522
+ * pucFirstUserPriorityRegister = ucOriginalPriority ;
523
523
}
524
524
#endif /* configASSERT_DEFINED */
525
525
Original file line number Diff line number Diff line change @@ -292,7 +292,7 @@ BaseType_t xPortStartScheduler( void )
292
292
{
293
293
#if ( configASSERT_DEFINED == 1 )
294
294
{
295
- volatile uint8_t ulOriginalPriority ;
295
+ volatile uint8_t ucOriginalPriority ;
296
296
volatile uint32_t ulImplementedPrioBits = 0 ;
297
297
volatile uint8_t * const pucFirstUserPriorityRegister = ( volatile uint8_t * const ) ( portNVIC_IP_REGISTERS_OFFSET_16 + portFIRST_USER_INTERRUPT_NUMBER );
298
298
volatile uint8_t ucMaxPriorityValue ;
@@ -303,7 +303,7 @@ BaseType_t xPortStartScheduler( void )
303
303
* ensure interrupt entry is as fast and simple as possible.
304
304
*
305
305
* Save the interrupt priority value that is about to be clobbered. */
306
- ulOriginalPriority = * pucFirstUserPriorityRegister ;
306
+ ucOriginalPriority = * pucFirstUserPriorityRegister ;
307
307
308
308
/* Determine the number of priority bits available. First write to all
309
309
* possible bits. */
@@ -384,7 +384,7 @@ BaseType_t xPortStartScheduler( void )
384
384
385
385
/* Restore the clobbered interrupt priority register to its original
386
386
* value. */
387
- * pucFirstUserPriorityRegister = ulOriginalPriority ;
387
+ * pucFirstUserPriorityRegister = ucOriginalPriority ;
388
388
}
389
389
#endif /* configASSERT_DEFINED */
390
390
Original file line number Diff line number Diff line change @@ -411,15 +411,15 @@ BaseType_t xPortStartScheduler( void )
411
411
412
412
#if ( configASSERT_DEFINED == 1 )
413
413
{
414
- volatile uint8_t ulOriginalPriority ;
414
+ volatile uint8_t ucOriginalPriority ;
415
415
volatile uint8_t * const pucFirstUserPriorityRegister = ( volatile uint8_t * const ) ( configINTERRUPT_CONTROLLER_BASE_ADDRESS + portINTERRUPT_PRIORITY_REGISTER_OFFSET );
416
416
volatile uint8_t ucMaxPriorityValue ;
417
417
418
418
/*
419
419
* Determine how many priority bits are implemented in the GIC.
420
420
* Save the interrupt priority value that is about to be clobbered.
421
421
*/
422
- ulOriginalPriority = * pucFirstUserPriorityRegister ;
422
+ ucOriginalPriority = * pucFirstUserPriorityRegister ;
423
423
424
424
/*
425
425
* Determine the number of priority bits available. First write to
@@ -457,7 +457,7 @@ BaseType_t xPortStartScheduler( void )
457
457
* Restore the clobbered interrupt priority register to its original
458
458
* value.
459
459
*/
460
- * pucFirstUserPriorityRegister = ulOriginalPriority ;
460
+ * pucFirstUserPriorityRegister = ucOriginalPriority ;
461
461
}
462
462
#endif /* configASSERT_DEFINED */
463
463
Original file line number Diff line number Diff line change @@ -210,7 +210,7 @@ BaseType_t xPortStartScheduler( void )
210
210
{
211
211
#if ( configASSERT_DEFINED == 1 )
212
212
{
213
- volatile uint8_t ulOriginalPriority ;
213
+ volatile uint8_t ucOriginalPriority ;
214
214
volatile uint32_t ulImplementedPrioBits = 0 ;
215
215
volatile uint8_t * const pucFirstUserPriorityRegister = ( volatile uint8_t * const ) ( portNVIC_IP_REGISTERS_OFFSET_16 + portFIRST_USER_INTERRUPT_NUMBER );
216
216
volatile uint8_t ucMaxPriorityValue ;
@@ -221,7 +221,7 @@ BaseType_t xPortStartScheduler( void )
221
221
* ensure interrupt entry is as fast and simple as possible.
222
222
*
223
223
* Save the interrupt priority value that is about to be clobbered. */
224
- ulOriginalPriority = * pucFirstUserPriorityRegister ;
224
+ ucOriginalPriority = * pucFirstUserPriorityRegister ;
225
225
226
226
/* Determine the number of priority bits available. First write to all
227
227
* possible bits. */
@@ -302,7 +302,7 @@ BaseType_t xPortStartScheduler( void )
302
302
303
303
/* Restore the clobbered interrupt priority register to its original
304
304
* value. */
305
- * pucFirstUserPriorityRegister = ulOriginalPriority ;
305
+ * pucFirstUserPriorityRegister = ucOriginalPriority ;
306
306
}
307
307
#endif /* configASSERT_DEFINED */
308
308
Original file line number Diff line number Diff line change @@ -248,7 +248,7 @@ BaseType_t xPortStartScheduler( void )
248
248
249
249
#if ( configASSERT_DEFINED == 1 )
250
250
{
251
- volatile uint8_t ulOriginalPriority ;
251
+ volatile uint8_t ucOriginalPriority ;
252
252
volatile uint32_t ulImplementedPrioBits = 0 ;
253
253
volatile uint8_t * const pucFirstUserPriorityRegister = ( volatile uint8_t * const ) ( portNVIC_IP_REGISTERS_OFFSET_16 + portFIRST_USER_INTERRUPT_NUMBER );
254
254
volatile uint8_t ucMaxPriorityValue ;
@@ -259,7 +259,7 @@ BaseType_t xPortStartScheduler( void )
259
259
* ensure interrupt entry is as fast and simple as possible.
260
260
*
261
261
* Save the interrupt priority value that is about to be clobbered. */
262
- ulOriginalPriority = * pucFirstUserPriorityRegister ;
262
+ ucOriginalPriority = * pucFirstUserPriorityRegister ;
263
263
264
264
/* Determine the number of priority bits available. First write to all
265
265
* possible bits. */
@@ -340,7 +340,7 @@ BaseType_t xPortStartScheduler( void )
340
340
341
341
/* Restore the clobbered interrupt priority register to its original
342
342
* value. */
343
- * pucFirstUserPriorityRegister = ulOriginalPriority ;
343
+ * pucFirstUserPriorityRegister = ucOriginalPriority ;
344
344
}
345
345
#endif /* configASSERT_DEFINED */
346
346
Original file line number Diff line number Diff line change @@ -362,7 +362,7 @@ BaseType_t xPortStartScheduler( void )
362
362
363
363
#if ( configASSERT_DEFINED == 1 )
364
364
{
365
- volatile uint8_t ulOriginalPriority ;
365
+ volatile uint8_t ucOriginalPriority ;
366
366
volatile uint32_t ulImplementedPrioBits = 0 ;
367
367
volatile uint8_t * const pucFirstUserPriorityRegister = ( volatile uint8_t * const ) ( portNVIC_IP_REGISTERS_OFFSET_16 + portFIRST_USER_INTERRUPT_NUMBER );
368
368
volatile uint8_t ucMaxPriorityValue ;
@@ -373,7 +373,7 @@ BaseType_t xPortStartScheduler( void )
373
373
* ensure interrupt entry is as fast and simple as possible.
374
374
*
375
375
* Save the interrupt priority value that is about to be clobbered. */
376
- ulOriginalPriority = * pucFirstUserPriorityRegister ;
376
+ ucOriginalPriority = * pucFirstUserPriorityRegister ;
377
377
378
378
/* Determine the number of priority bits available. First write to all
379
379
* possible bits. */
@@ -454,7 +454,7 @@ BaseType_t xPortStartScheduler( void )
454
454
455
455
/* Restore the clobbered interrupt priority register to its original
456
456
* value. */
457
- * pucFirstUserPriorityRegister = ulOriginalPriority ;
457
+ * pucFirstUserPriorityRegister = ucOriginalPriority ;
458
458
}
459
459
#endif /* configASSERT_DEFINED */
460
460
Original file line number Diff line number Diff line change @@ -236,7 +236,7 @@ BaseType_t xPortStartScheduler( void )
236
236
{
237
237
#if ( configASSERT_DEFINED == 1 )
238
238
{
239
- volatile uint8_t ulOriginalPriority ;
239
+ volatile uint8_t ucOriginalPriority ;
240
240
volatile uint32_t ulImplementedPrioBits = 0 ;
241
241
volatile uint8_t * const pucFirstUserPriorityRegister = ( volatile uint8_t * const ) ( portNVIC_IP_REGISTERS_OFFSET_16 + portFIRST_USER_INTERRUPT_NUMBER );
242
242
volatile uint8_t ucMaxPriorityValue ;
@@ -247,7 +247,7 @@ BaseType_t xPortStartScheduler( void )
247
247
* ensure interrupt entry is as fast and simple as possible.
248
248
*
249
249
* Save the interrupt priority value that is about to be clobbered. */
250
- ulOriginalPriority = * pucFirstUserPriorityRegister ;
250
+ ucOriginalPriority = * pucFirstUserPriorityRegister ;
251
251
252
252
/* Determine the number of priority bits available. First write to all
253
253
* possible bits. */
@@ -328,7 +328,7 @@ BaseType_t xPortStartScheduler( void )
328
328
329
329
/* Restore the clobbered interrupt priority register to its original
330
330
* value. */
331
- * pucFirstUserPriorityRegister = ulOriginalPriority ;
331
+ * pucFirstUserPriorityRegister = ucOriginalPriority ;
332
332
}
333
333
#endif /* configASSERT_DEFINED */
334
334
You can’t perform that action at this time.
0 commit comments