This file contains the low level functions (drivers) of 8-bit Timer(s) More...
#include "config.h"#include "timer8_drv.h"
Go to the source code of this file.
Functions | |
| U8 | timer8_get_counter (void) |
| This function READ the 8-bit TIMER counter. | |
This file contains the low level functions (drivers) of 8-bit Timer(s)
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 67 of file timer8_drv.c.
{
U8 u8_temp;
u8_temp = Timer8_get_counter();
return u8_temp;
}
1.7.2