Files
allwpilib/hal/src/main/native/cpp/jni/ConstantsJNI.cpp

32 lines
981 B
C++
Raw Normal View History

/*----------------------------------------------------------------------------*/
/* Copyright (c) 2016-2020 FIRST. All Rights Reserved. */
/* Open Source Software - may be modified and shared by FRC teams. The code */
/* must be accompanied by the FIRST BSD license file in the root directory of */
/* the project. */
/*----------------------------------------------------------------------------*/
#include <jni.h>
2018-05-13 17:09:56 -07:00
#include <cassert>
#include "HALUtil.h"
#include "edu_wpi_first_hal_ConstantsJNI.h"
#include "hal/Constants.h"
using namespace hal;
extern "C" {
/*
* Class: edu_wpi_first_hal_ConstantsJNI
* Method: getSystemClockTicksPerMicrosecond
* Signature: ()I
*/
JNIEXPORT jint JNICALL
Java_edu_wpi_first_hal_ConstantsJNI_getSystemClockTicksPerMicrosecond
2018-05-13 17:09:56 -07:00
(JNIEnv* env, jclass)
{
jint value = HAL_GetSystemClockTicksPerMicrosecond();
return value;
}
2018-05-13 17:09:56 -07:00
} // extern "C"