added iris-kit repository

This commit is contained in:
strawmanbobi
2022-01-12 17:24:18 +08:00
commit 1ec60a8d01
736 changed files with 115530 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
// Copyright 2017 David Conran
#ifndef IRTIMER_H_
#define IRTIMER_H_
#define __STDC_LIMIT_MACROS
#include <stdint.h>
// Classes
class IRtimer {
public:
IRtimer();
void reset();
uint32_t elapsed();
#ifdef UNIT_TEST
static void add(uint32_t usecs);
#endif // UNIT_TEST
private:
uint32_t start;
};
#endif // IRTIMER_H_