Functions

timer8_drv.c File Reference

This file contains the low level functions (drivers) of 8-bit Timer(s) More...

#include "config.h"
#include "timer8_drv.h"
Include dependency graph for timer8_drv.c:

Go to the source code of this file.

Functions

U8 timer8_get_counter (void)
 This function READ the 8-bit TIMER counter.

Detailed Description

This file contains the low level functions (drivers) of 8-bit Timer(s)

Author:
Atmel Corporation: http://www.atmel.com
Support and FAQ: http://support.atmel.no/

Definition in file timer8_drv.c.


Function Documentation

U8 timer8_get_counter ( void   )

This function READ the 8-bit TIMER counter.

"Call" compatible with 16-bit Timers drivers.

Warning:
Parameters:
Returns:
8-bit counter value

Definition at line 67 of file timer8_drv.c.

{
    U8 u8_temp;
    
    u8_temp = Timer8_get_counter();
    
    return u8_temp;
}