blob: a3129357d7c86d88d04f52cf124c40f475ddbde5 [file] [log] [blame]
Austin Schuh812d0d12021-11-04 20:16:48 -07001// Copyright (c) FIRST and other WPILib contributors.
2// Open Source Software; you can modify and/or share it under the terms of
3// the WPILib BSD license file in the root directory of this project.
Brian Silverman8fce7482020-01-05 13:18:21 -08004
5#include "hal/Constants.h"
6
7#include "ConstantsInternal.h"
8
9using namespace hal;
10
Austin Schuh812d0d12021-11-04 20:16:48 -070011namespace hal::init {
Brian Silverman8fce7482020-01-05 13:18:21 -080012void InitializeConstants() {}
Austin Schuh812d0d12021-11-04 20:16:48 -070013} // namespace hal::init
Brian Silverman8fce7482020-01-05 13:18:21 -080014
15extern "C" {
16
17int32_t HAL_GetSystemClockTicksPerMicrosecond(void) {
18 return kSystemClockTicksPerMicrosecond;
19}
20
21} // extern "C"