mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
20 lines
294 B
C++
20 lines
294 B
C++
#ifndef ION_DEVICE_N0110_CONFIG_TIMING_H
|
|
#define ION_DEVICE_N0110_CONFIG_TIMING_H
|
|
|
|
#include <regs/regs.h>
|
|
|
|
namespace Ion {
|
|
namespace Device {
|
|
namespace Timing {
|
|
namespace Config {
|
|
|
|
constexpr static int LoopsPerMillisecond = 4811;
|
|
constexpr static int LoopsPerMicrosecond = 38;
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif
|