mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
91 lines
1.7 KiB
C
91 lines
1.7 KiB
C
/*
|
|
* Copyright (C) 2020 Inria
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
* directory for more details.
|
|
*/
|
|
|
|
/**
|
|
* @ingroup drivers_touch_dev
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Helper functions for generic API of touch device
|
|
*
|
|
* @author Alexandre Abadie <alexandre.abadie@inria.fr>
|
|
*
|
|
* @}
|
|
*/
|
|
|
|
#include <assert.h>
|
|
#include <stddef.h>
|
|
#include <inttypes.h>
|
|
#include <stdbool.h>
|
|
#include <errno.h>
|
|
|
|
#include "touch_dev.h"
|
|
|
|
touch_dev_reg_t *touch_dev_reg = NULL;
|
|
|
|
int touch_dev_reg_add(touch_dev_reg_t *dev)
|
|
{
|
|
touch_dev_reg_t *tmp = touch_dev_reg;
|
|
|
|
if (dev == NULL) {
|
|
return -ENODEV;
|
|
}
|
|
|
|
/* prepare new entry */
|
|
dev->next = NULL;
|
|
/* add to registry */
|
|
if (touch_dev_reg == NULL) {
|
|
touch_dev_reg = dev;
|
|
}
|
|
else {
|
|
while (tmp->next != NULL) {
|
|
tmp = tmp->next;
|
|
}
|
|
tmp->next = dev;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
touch_dev_reg_t *touch_dev_reg_find_screen(uint8_t screen_id)
|
|
{
|
|
touch_dev_reg_t *tmp = touch_dev_reg;
|
|
|
|
while (tmp && tmp->screen_id != screen_id) {
|
|
tmp = tmp->next;
|
|
}
|
|
|
|
return tmp;
|
|
}
|
|
|
|
uint16_t touch_dev_height(const touch_dev_t *dev)
|
|
{
|
|
assert(dev);
|
|
|
|
return dev->driver->height(dev);
|
|
}
|
|
|
|
uint16_t touch_dev_width(const touch_dev_t *dev)
|
|
{
|
|
assert(dev);
|
|
|
|
return dev->driver->width(dev);
|
|
}
|
|
|
|
uint8_t touch_dev_touches(const touch_dev_t *dev, touch_t *touches, size_t len)
|
|
{
|
|
assert(dev);
|
|
|
|
return dev->driver->touches(dev, touches, len);
|
|
}
|
|
|
|
void touch_dev_set_touch_event_callback(const touch_dev_t *dev, touch_event_cb_t cb, void *arg)
|
|
{
|
|
assert(dev);
|
|
dev->driver->set_event_callback(dev, cb, arg);
|
|
}
|