mirror of
https://github.com/SemvdH/OBD2-car-display.git
synced 2025-12-15 04:01:04 +00:00
23 lines
324 B
C
23 lines
324 B
C
#ifndef OBD2_TIMER_H
|
|
#define OBD2_TIMER_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
#include "Arduino.h"
|
|
|
|
#define CLOCK_FREQ 32768
|
|
|
|
void obd2_RTT_init();
|
|
void obd2_RTT_reset();
|
|
void obd2_RTT_enable();
|
|
void obd2_RTT_set_period(__UINT32_TYPE__ period);
|
|
|
|
void obd2_TC_init();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif // !OBD2_TIMER_H
|