#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. |
Copyright (c) 2006 Atmel.
Use of this program is subject to Atmel's End User License Agreement. Please read file license.txt for copyright notice.
This file can be parsed by Doxygen for automatic documentation generation.
Definition in file timer8_drv.c.
U8 timer8_get_counter | ( | void | ) |
This function READ the 8-bit TIMER counter.
"Call" compatible with 16-bit Timers drivers.
Definition at line 43 of file timer8_drv.c.
References Timer8_get_counter.
00044 { 00045 U8 u8_temp; 00046 00047 u8_temp = Timer8_get_counter(); 00048 00049 return u8_temp; 00050 }