11 lines
176 B
C
11 lines
176 B
C
#pragma once
|
|
|
|
#ifndef TICK_H
|
|
#define TICK_H
|
|
|
|
void TICK_Init();
|
|
unsigned long TICK_GetCount();
|
|
float TICK_GetTime();
|
|
void TICK_Delay(unsigned long us); // 900 us maximum
|
|
|
|
#endif |