mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
Also update copyright to include "and other WPILib contributors" and clarify license referral language to not be restricted to FIRST teams.
73 lines
1.6 KiB
C++
73 lines
1.6 KiB
C++
// 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.
|
|
|
|
#include <jni.h>
|
|
|
|
#include "edu_wpi_first_hal_AccelerometerJNI.h"
|
|
#include "hal/Accelerometer.h"
|
|
|
|
extern "C" {
|
|
|
|
/*
|
|
* Class: edu_wpi_first_hal_AccelerometerJNI
|
|
* Method: setAccelerometerActive
|
|
* Signature: (Z)V
|
|
*/
|
|
JNIEXPORT void JNICALL
|
|
Java_edu_wpi_first_hal_AccelerometerJNI_setAccelerometerActive
|
|
(JNIEnv*, jclass, jboolean active)
|
|
{
|
|
HAL_SetAccelerometerActive(active);
|
|
}
|
|
|
|
/*
|
|
* Class: edu_wpi_first_hal_AccelerometerJNI
|
|
* Method: setAccelerometerRange
|
|
* Signature: (I)V
|
|
*/
|
|
JNIEXPORT void JNICALL
|
|
Java_edu_wpi_first_hal_AccelerometerJNI_setAccelerometerRange
|
|
(JNIEnv*, jclass, jint range)
|
|
{
|
|
HAL_SetAccelerometerRange((HAL_AccelerometerRange)range);
|
|
}
|
|
|
|
/*
|
|
* Class: edu_wpi_first_hal_AccelerometerJNI
|
|
* Method: getAccelerometerX
|
|
* Signature: ()D
|
|
*/
|
|
JNIEXPORT jdouble JNICALL
|
|
Java_edu_wpi_first_hal_AccelerometerJNI_getAccelerometerX
|
|
(JNIEnv*, jclass)
|
|
{
|
|
return HAL_GetAccelerometerX();
|
|
}
|
|
|
|
/*
|
|
* Class: edu_wpi_first_hal_AccelerometerJNI
|
|
* Method: getAccelerometerY
|
|
* Signature: ()D
|
|
*/
|
|
JNIEXPORT jdouble JNICALL
|
|
Java_edu_wpi_first_hal_AccelerometerJNI_getAccelerometerY
|
|
(JNIEnv*, jclass)
|
|
{
|
|
return HAL_GetAccelerometerY();
|
|
}
|
|
|
|
/*
|
|
* Class: edu_wpi_first_hal_AccelerometerJNI
|
|
* Method: getAccelerometerZ
|
|
* Signature: ()D
|
|
*/
|
|
JNIEXPORT jdouble JNICALL
|
|
Java_edu_wpi_first_hal_AccelerometerJNI_getAccelerometerZ
|
|
(JNIEnv*, jclass)
|
|
{
|
|
return HAL_GetAccelerometerZ();
|
|
}
|
|
|
|
} // extern "C"
|