Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 881 |
theseven |
1 |
#include "global.h"
|
|
|
2 |
#include "sys/time.h"
|
|
|
3 |
#include "sys/util.h"
|
|
|
4 |
#include "soc/s5l87xx/regs.h"
|
|
|
5 |
|
|
|
6 |
unsigned int read_usec_timer()
|
|
|
7 |
{
|
|
|
8 |
#ifdef SOC_S5L8701
|
|
|
9 |
discard(USEC_TIMER_H);
|
|
|
10 |
return USEC_TIMER_L * 5;
|
|
|
11 |
#else
|
|
|
12 |
return TECNT;
|
|
|
13 |
#endif
|
|
|
14 |
}
|