1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

drivers/touch_dev: define invalid touch position

This commit is contained in:
Gunar Schorcht 2023-08-14 17:46:34 +02:00
parent 91441db357
commit 09f07262f4

View File

@ -28,6 +28,11 @@ extern "C" {
#include <stdint.h>
#include <stdbool.h>
/**
* @brief Invalid touch value
*/
#define TOUCH_DEV_VALUE_INVALID ((touch_t){ UINT16_MAX, UINT16_MAX })
/**
* @brief Forward declaration for touch device struct
*/