File tree 2 files changed +10
-10
lines changed 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -208,9 +208,9 @@ volatile uint32_t ulPortYieldRequired = pdFALSE;
208
208
volatile uint32_t ulPortInterruptNesting = 0UL ;
209
209
210
210
/* Used in the asm file. */
211
- __attribute__( ( used ) ) const uint32_t ulICCIAR = portICCIAR_INTERRUPT_ACKNOWLEDGE_REGISTER_ADDRESS ;
212
- __attribute__( ( used ) ) const uint32_t ulICCEOIR = portICCEOIR_END_OF_INTERRUPT_REGISTER_ADDRESS ;
213
- __attribute__( ( used ) ) const uint32_t ulICCPMR = portICCPMR_PRIORITY_MASK_REGISTER_ADDRESS ;
211
+ __attribute__( ( used ) ) const uint32_t ulICCIARAddress = portICCIAR_INTERRUPT_ACKNOWLEDGE_REGISTER_ADDRESS ;
212
+ __attribute__( ( used ) ) const uint32_t ulICCEOIRAddress = portICCEOIR_END_OF_INTERRUPT_REGISTER_ADDRESS ;
213
+ __attribute__( ( used ) ) const uint32_t ulICCPMRAddress = portICCPMR_PRIORITY_MASK_REGISTER_ADDRESS ;
214
214
__attribute__( ( used ) ) const uint32_t ulMaxAPIPriorityMask = ( configMAX_API_CALL_INTERRUPT_PRIORITY << portPRIORITY_SHIFT );
215
215
216
216
/*-----------------------------------------------------------*/
Original file line number Diff line number Diff line change 33
33
.set SVC_MODE , 0x13
34
34
.set IRQ_MODE , 0x12
35
35
36
- / * Hardware registers. * /
37
- . extern ulICCIAR
38
- . extern ulICCEOIR
39
- . extern ulICCPMR
36
+ / * Hardware registers addresses . * /
37
+ . extern ulICCIARAddress
38
+ . extern ulICCEOIRAddress
39
+ . extern ulICCPMRAddress
40
40
41
41
/ * Variables and functions. * /
42
42
. extern ulMaxAPIPriorityMask
@@ -317,9 +317,9 @@ vApplicationIRQHandler:
317
317
POP {PC}
318
318
319
319
320
- ulICCIARConst: .word ulICCIAR
321
- ulICCEOIRConst: .word ulICCEOIR
322
- ulICCPMRConst: .word ulICCPMR
320
+ ulICCIARConst: .word ulICCIARAddress
321
+ ulICCEOIRConst: .word ulICCEOIRAddress
322
+ ulICCPMRConst: .word ulICCPMRAddress
323
323
pxCurrentTCBConst: .word pxCurrentTCB
324
324
ulCriticalNestingConst: .word ulCriticalNesting
325
325
ulPortTaskHasFPUContextConst: .word ulPortTaskHasFPUContext
You can’t perform that action at this time.
0 commit comments