mirror of
https://github.com/azahar-emu/ArticBaseServer
synced 2025-11-06 23:20:06 +01:00
12 lines
269 B
C++
12 lines
269 B
C++
#pragma once
|
|
#include "3ds.h"
|
|
|
|
struct GyroscopeCalibrateParam {
|
|
struct {
|
|
s16 zero_point;
|
|
s16 positive_unit_point;
|
|
s16 negative_unit_point;
|
|
} x, y, z;
|
|
};
|
|
|
|
Result HIDUSER_GetGyroscopeCalibrateParam(GyroscopeCalibrateParam* calibrateParam); |