2020-12-26 14:12:05 -08:00
|
|
|
// Copyright (c) FIRST and other WPILib contributors.
|
|
|
|
|
// Open Source Software; you can modify and/or share it under the terms of
|
|
|
|
|
// the WPILib BSD license file in the root directory of this project.
|
2016-07-08 00:08:07 -07:00
|
|
|
|
2025-11-07 19:56:21 -05:00
|
|
|
#include "wpi/hal/Constants.h"
|
2016-07-08 00:08:07 -07:00
|
|
|
|
2026-01-04 00:41:53 -08:00
|
|
|
#include "ConstantsInternal.hpp"
|
2016-07-08 00:08:07 -07:00
|
|
|
|
2025-11-07 20:00:05 -05:00
|
|
|
using namespace wpi::hal;
|
2016-07-08 00:08:07 -07:00
|
|
|
|
2025-11-07 20:00:05 -05:00
|
|
|
namespace wpi::hal::init {
|
2017-12-10 19:38:53 -08:00
|
|
|
void InitializeConstants() {}
|
2025-11-07 20:00:05 -05:00
|
|
|
} // namespace wpi::hal::init
|
2017-12-10 19:38:53 -08:00
|
|
|
|
2016-07-08 00:08:07 -07:00
|
|
|
extern "C" {
|
2016-07-09 00:24:26 -07:00
|
|
|
int32_t HAL_GetSystemClockTicksPerMicrosecond(void) {
|
2016-07-08 00:08:07 -07:00
|
|
|
return kSystemClockTicksPerMicrosecond;
|
|
|
|
|
}
|
2017-10-16 19:56:08 -07:00
|
|
|
} // extern "C"
|