blob: 6c1361ed61246565a6b69a7fc8d323f8305c9330 [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" {
16int32_t HAL_GetSystemClockTicksPerMicrosecond(void) {
17 return kSystemClockTicksPerMicrosecond;
18}
19} // extern "C"