Home
last modified time | relevance | path

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

/FreeRTOS-Kernel/portable/oWatcom/16BitDOS/PC/
A Dport.c278 uint32_t ulOutput; in prvSetTickFrequency() local
282 ulOutput = ulPIT_CONST / ulTickRateHz; in prvSetTickFrequency()
284 portOUTPUT_BYTE( usPIT0, ( uint16_t )( ulOutput & ( uint32_t ) 0xff ) ); in prvSetTickFrequency()
285 ulOutput >>= 8; in prvSetTickFrequency()
286 portOUTPUT_BYTE( usPIT0, ( uint16_t ) ( ulOutput & ( uint32_t ) 0xff ) ); in prvSetTickFrequency()
/FreeRTOS-Kernel/portable/BCC/16BitDOS/PC/
A Dport.c265 uint32_t ulOutput; in prvSetTickFrequency() local
269 ulOutput = ulPIT_CONST / ulTickRateHz; in prvSetTickFrequency()
270 portOUTPUT_BYTE( usPIT0, ( uint16_t )( ulOutput & ( uint32_t ) 0xff ) ); in prvSetTickFrequency()
271 ulOutput >>= 8; in prvSetTickFrequency()
272 portOUTPUT_BYTE( usPIT0, ( uint16_t ) ( ulOutput & ( uint32_t ) 0xff ) ); in prvSetTickFrequency()

Completed in 3 milliseconds