File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 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;
208208volatile uint32_t ulPortInterruptNesting = 0UL ;
209209
210210/* 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 ;
214214__attribute__( ( used ) ) const uint32_t ulMaxAPIPriorityMask = ( configMAX_API_CALL_INTERRUPT_PRIORITY << portPRIORITY_SHIFT );
215215
216216/*-----------------------------------------------------------*/
Original file line number Diff line number Diff line change 3333 .set SVC_MODE , 0x13
3434 .set IRQ_MODE , 0x12
3535
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
4040
4141 / * Variables and functions. * /
4242 . extern ulMaxAPIPriorityMask
@@ -317,9 +317,9 @@ vApplicationIRQHandler:
317317 POP {PC}
318318
319319
320- ulICCIARConst: .word ulICCIAR
321- ulICCEOIRConst: .word ulICCEOIR
322- ulICCPMRConst: .word ulICCPMR
320+ ulICCIARConst: .word ulICCIARAddress
321+ ulICCEOIRConst: .word ulICCEOIRAddress
322+ ulICCPMRConst: .word ulICCPMRAddress
323323pxCurrentTCBConst: .word pxCurrentTCB
324324ulCriticalNestingConst: .word ulCriticalNesting
325325ulPortTaskHasFPUContextConst: .word ulPortTaskHasFPUContext
You can’t perform that action at this time.
0 commit comments