2021-06-20 21:51:37 +00:00
|
|
|
/*
|
2022-03-28 02:04:49 +00:00
|
|
|
* Copyright (c) 2020-2022 ndeadly
|
2021-06-20 21:51:37 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <switch.h>
|
|
|
|
|
|
|
|
namespace ams::controller {
|
|
|
|
|
|
|
|
constexpr auto UINT12_MAX = 0xfff;
|
|
|
|
constexpr auto STICK_ZERO = 0x800;
|
|
|
|
|
|
|
|
struct SwitchAnalogStick {
|
|
|
|
void SetData(uint16_t x, uint16_t y);
|
|
|
|
void SetX(uint16_t x);
|
|
|
|
void SetY(uint16_t y);
|
2022-04-08 15:12:59 +00:00
|
|
|
uint16_t GetX();
|
|
|
|
uint16_t GetY();
|
|
|
|
void InvertX();
|
|
|
|
void InvertY();
|
2021-10-12 18:54:54 +00:00
|
|
|
|
2021-06-20 21:51:37 +00:00
|
|
|
uint8_t m_xy[3];
|
|
|
|
};
|
|
|
|
|
2021-06-28 17:57:10 +00:00
|
|
|
struct SwitchAnalogStickFactoryCalibration {
|
|
|
|
uint8_t calib[9];
|
|
|
|
};
|
|
|
|
|
2021-10-12 18:54:54 +00:00
|
|
|
struct SwitchAnalogStickParameters {
|
|
|
|
uint8_t stickvalues[18];
|
|
|
|
};
|
|
|
|
|
2021-06-20 21:51:37 +00:00
|
|
|
}
|