2021-08-17 20:52:44 +02:00
|
|
|
/* Copyright 2021
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that 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/>.
|
|
|
|
*/
|
|
|
|
|
2023-03-22 04:32:49 +01:00
|
|
|
#pragma once
|
2021-08-17 20:52:44 +02:00
|
|
|
|
2022-11-13 00:28:11 +01:00
|
|
|
#include <stdbool.h>
|
2021-08-17 20:52:44 +02:00
|
|
|
|
2022-11-13 00:28:11 +01:00
|
|
|
/**
|
2023-03-22 04:32:49 +01:00
|
|
|
* \file
|
2022-11-13 00:28:11 +01:00
|
|
|
*
|
2023-03-22 04:32:49 +01:00
|
|
|
* defgroup digitizer HID Digitizer
|
2022-11-13 00:28:11 +01:00
|
|
|
* \{
|
|
|
|
*/
|
2021-08-17 20:52:44 +02:00
|
|
|
|
|
|
|
typedef struct {
|
2022-11-13 00:28:11 +01:00
|
|
|
bool in_range : 1;
|
|
|
|
bool tip : 1;
|
|
|
|
bool barrel : 1;
|
|
|
|
float x;
|
|
|
|
float y;
|
|
|
|
bool dirty;
|
2021-08-17 20:52:44 +02:00
|
|
|
} digitizer_t;
|
|
|
|
|
2022-11-13 00:28:11 +01:00
|
|
|
extern digitizer_t digitizer_state;
|
2021-08-17 20:52:44 +02:00
|
|
|
|
2022-11-13 00:28:11 +01:00
|
|
|
/**
|
|
|
|
* \brief Send the digitizer report to the host if it is marked as dirty.
|
|
|
|
*/
|
|
|
|
void digitizer_flush(void);
|
2021-08-17 20:52:44 +02:00
|
|
|
|
2022-11-13 00:28:11 +01:00
|
|
|
/**
|
|
|
|
* \brief Assert the "in range" indicator, and flush the report.
|
|
|
|
*/
|
|
|
|
void digitizer_in_range_on(void);
|
2021-08-17 20:52:44 +02:00
|
|
|
|
2022-11-13 00:28:11 +01:00
|
|
|
/**
|
|
|
|
* \brief Deassert the "in range" indicator, and flush the report.
|
|
|
|
*/
|
|
|
|
void digitizer_in_range_off(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Assert the tip switch, and flush the report.
|
|
|
|
*/
|
|
|
|
void digitizer_tip_switch_on(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Deassert the tip switch, and flush the report.
|
|
|
|
*/
|
|
|
|
void digitizer_tip_switch_off(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Assert the barrel switch, and flush the report.
|
|
|
|
*/
|
|
|
|
void digitizer_barrel_switch_on(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Deassert the barrel switch, and flush the report.
|
|
|
|
*/
|
|
|
|
void digitizer_barrel_switch_off(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Set the absolute X and Y position of the digitizer contact, and flush the report.
|
|
|
|
*
|
|
|
|
* \param x The X value of the contact position, from 0 to 1.
|
|
|
|
* \param y The Y value of the contact position, from 0 to 1.
|
|
|
|
*/
|
|
|
|
void digitizer_set_position(float x, float y);
|
2021-08-17 20:52:44 +02:00
|
|
|
|
|
|
|
void host_digitizer_send(digitizer_t *digitizer);
|
2022-11-13 00:28:11 +01:00
|
|
|
|
|
|
|
/** \} */
|