12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- NVIC_SetPriority (uint8 IRQn, uint8 priority)
- {
- uint8 shift;
- long unsigned int _1;
- int _2;
- long unsigned int _3;
- struct S32_NVIC_Type * _4;
- long unsigned int _5;
- unsigned char _6;
- <bb 2> :
- # DEBUG BEGIN_STMT
- shift_7 = 4;
- # DEBUG shift => shift_7
- # DEBUG BEGIN_STMT
- _1 = (long unsigned int) priority_8(D);
- _2 = (int) shift_7;
- _3 = _1 << _2;
- _4 = 3758153984B;
- _5 = (long unsigned int) IRQn_9(D);
- _6 = (unsigned char) _3;
- _4->IP[_5] ={v} _6;
- return;
- }
- NVIC_DisableIRQ (uint8 IRQn)
- {
- long unsigned int _1;
- long unsigned int _2;
- struct S32_NVIC_Type * _3;
- unsigned char _4;
- long unsigned int _5;
- long unsigned int _6;
- <bb 2> :
- # DEBUG BEGIN_STMT
- _1 = (long unsigned int) IRQn_7(D);
- _2 = _1 & 31;
- _3 = 3758153984B;
- _4 = IRQn_7(D) >> 5;
- _5 = (long unsigned int) _4;
- _6 = 1 << _2;
- _3->ICER[_5] ={v} _6;
- return;
- }
- NVIC_EnableIRQ (uint8 IRQn)
- {
- long unsigned int _1;
- long unsigned int _2;
- struct S32_NVIC_Type * _3;
- unsigned char _4;
- long unsigned int _5;
- long unsigned int _6;
- <bb 2> :
- # DEBUG BEGIN_STMT
- _1 = (long unsigned int) IRQn_7(D);
- _2 = _1 & 31;
- _3 = 3758153984B;
- _4 = IRQn_7(D) >> 5;
- _5 = (long unsigned int) _4;
- _6 = 1 << _2;
- _3->ISER[_5] ={v} _6;
- return;
- }
- NVIC_SetPriorityGrouping (uint32 PriorityGroup)
- {
- struct S32_SCB_Type * _1;
- long unsigned int _2;
- long unsigned int _3;
- struct S32_SCB_Type * _4;
- long unsigned int _5;
- <bb 2> :
- # DEBUG BEGIN_STMT
- _1 = 3758153728B;
- _2 ={v} _1->AIRCR;
- _3 = _2 & 4294965503;
- _4 = 3758153728B;
- _5 = PriorityGroup_7(D) | _3;
- _4->AIRCR ={v} _5;
- return;
- }
|