blob: 6b8a40ff50453e52f19f7026d4ab570b60789907 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef DEF_TIME_NS_H
#define DEF_TIME_NS_H
#include <Devices/Timer.class.h>
namespace Time {
void setTimer(Timer* t);
u32int uptime();
u32int time();
}
#endif
|