Files
Upsilon/ion/src/device/bootloader/drivers/config/timing.h
2022-03-17 20:05:20 +01:00

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