mirror of
https://github.com/SemvdH/OBD2-car-display.git
synced 2025-12-16 12:41:05 +00:00
17 lines
212 B
C
17 lines
212 B
C
#ifndef OBD2_TIMER_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "Arduino.h"
|
|
|
|
#define CLOCK_FREQ 32768
|
|
|
|
void obd2_timer_init();
|
|
void obd2_timer_reset();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif // !OBD2_TIMER_H
|