Home
last modified time | relevance | path

Searched refs:ulCompareValue (Results 1 – 2 of 2) sorted by relevance

/Kernel-v11.1.0/portable/MPLAB/PIC18F/
Dport.c584 uint32_t ulCompareValue;
597 ulCompareValue = ulConstCompareValue;
598 CCPR1L = ( uint8_t ) ( ulCompareValue & ( uint32_t ) 0xff );
599 ulCompareValue >>= ( uint32_t ) 8;
600 CCPR1H = ( uint8_t ) ( ulCompareValue & ( uint32_t ) 0xff );
/Kernel-v11.1.0/portable/Paradigm/Tern_EE/small/
Dport.c198 const uint32_t ulCompareValue = portTIMER_COMPARE; in prvSetupTimerInterrupt() local
201 usTimerCompare = ( uint16_t ) ( ulCompareValue >> 4 ); in prvSetupTimerInterrupt()