2014-04-25 20:46:43 -07:00
|
|
|
/**
|
|
|
|
* @file microsecond_timer.h
|
|
|
|
*
|
|
|
|
* @date Apr 14, 2014
|
2014-05-19 08:10:56 -07:00
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2014
|
2014-04-25 20:46:43 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SIGNAL_TEMP_H_
|
|
|
|
#define SIGNAL_TEMP_H_
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
void initMicrosecondTimer(void);
|
2014-05-19 08:10:56 -07:00
|
|
|
void setHardwareUsTimer(int32_t timeUs);
|
2014-04-25 20:46:43 -07:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
#endif /* SIGNAL_TEMP_H_ */
|