Home
last modified time | relevance | path

Searched refs:ucLowByte (Results 1 – 3 of 3) sorted by relevance

/Kernel-v11.1.0/portable/GCC/ATMega323/
Dport.c370 uint8_t ucHighByte, ucLowByte; in prvSetupTimerInterrupt() local
385 ucLowByte = ( uint8_t ) ( ulCompareMatch & ( uint32_t ) 0xff ); in prvSetupTimerInterrupt()
389 OCR1AL = ucLowByte; in prvSetupTimerInterrupt()
392 ucLowByte = portCLEAR_COUNTER_ON_MATCH | portPRESCALE_64; in prvSetupTimerInterrupt()
393 TCCR1B = ucLowByte; in prvSetupTimerInterrupt()
397 ucLowByte = TIMSK; in prvSetupTimerInterrupt()
398 ucLowByte |= portCOMPARE_MATCH_A_INTERRUPT_ENABLE; in prvSetupTimerInterrupt()
399 TIMSK = ucLowByte; in prvSetupTimerInterrupt()
/Kernel-v11.1.0/portable/IAR/ATMega323/
Dport.c264 uint8_t ucHighByte, ucLowByte; in prvSetupTimerInterrupt() local
279 ucLowByte = ( uint8_t ) ( ulCompareMatch & ( uint32_t ) 0xff ); in prvSetupTimerInterrupt()
283 OCR1AL = ucLowByte; in prvSetupTimerInterrupt()
286 ucLowByte = portCLEAR_COUNTER_ON_MATCH | portPRESCALE_64; in prvSetupTimerInterrupt()
287 TCCR1B = ucLowByte; in prvSetupTimerInterrupt()
/Kernel-v11.1.0/portable/ThirdParty/GCC/ATmega/
Dport.c710 uint8_t ucLowByte; in prvSetupTimerInterrupt() local
725 ucLowByte = ( uint8_t ) ( ulCompareMatch & ( uint32_t ) 0xff ); in prvSetupTimerInterrupt()
726 portOCRL = ucLowByte; in prvSetupTimerInterrupt()
734 ucLowByte = portTIMSK; in prvSetupTimerInterrupt()
735 ucLowByte |= portCOMPARE_MATCH_A_INTERRUPT_ENABLE; in prvSetupTimerInterrupt()
736 portTIMSK = ucLowByte; in prvSetupTimerInterrupt()