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
|
|
|
|
2018-07-20 00:03:45 -07:00
|
|
|
#include "hal/Constants.h"
|
2016-07-08 00:08:07 -07:00
|
|
|
|
|
|
|
|
#include "ConstantsInternal.h"
|
|
|
|
|
|
|
|
|
|
using namespace hal;
|
|
|
|
|
|
2020-12-28 01:19:59 -08:00
|
|
|
namespace hal::init {
|
2017-12-10 19:38:53 -08:00
|
|
|
void InitializeConstants() {}
|
2020-12-28 01:19:59 -08:00
|
|
|
} // namespace 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"
|