#include "config.h"#include "timer16_drv.h"
Go to the source code of this file.
Functions | |
| U16 | timer16_get_counter (void) |
| This function READ the 16-bit TIMER counter. | |
| U16 | timer16_get_capture (void) |
| This function READ the 16-bit TIMER capture register. | |
Definition in file timer16_drv.c.
| U16 timer16_get_counter | ( | void | ) |
This function READ the 16-bit TIMER counter.
Definition at line 62 of file timer16_drv.c.
00063 { 00064 U16 u16_temp; 00065 00066 u16_temp = Timer16_get_counter_low(); 00067 u16_temp |= (Timer16_get_counter_high() << 8 ); 00068 00069 return u16_temp; 00070 }
| U16 timer16_get_capture | ( | void | ) |
This function READ the 16-bit TIMER capture register.
Definition at line 83 of file timer16_drv.c.
00084 { 00085 U16 u16_temp; 00086 00087 u16_temp = Timer16_get_capture_low(); 00088 u16_temp |= (Timer16_get_capture_high() << 8 ); 00089 00090 return u16_temp; 00091 }
1.5.3