38 lines
1.1 KiB
C
38 lines
1.1 KiB
C
/**************************************************************************************************************************************
|
|
* Project: discoverpixy
|
|
* Website: https://github.com/t-moe/discoverpixy
|
|
* Authors: Aaron Schmocker, Timo Lang
|
|
* Institution: BFH Bern University of Applied Sciences
|
|
* File: common/lowlevel/ll_touch.h
|
|
*
|
|
* Version History:
|
|
* Date Autor Email SHA Changes
|
|
* 2015-04-27 timolang@gmail.com 259d446 Added touch support to emulator. Implemented basic touch function.
|
|
* 2015-05-15 timolang@gmail.com 9a16865 Added doxgen comments to filesyste, checkbox, numupdown and screen module. And some minor changes to the other modules.
|
|
*
|
|
**************************************************************************************************************************************/
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
/**
|
|
* @addtogroup lowlevel
|
|
*/
|
|
/*@{*/
|
|
|
|
/**
|
|
* @defgroup ll_touch Touch (LowLevel)
|
|
* Low level functions for the \ref touch module
|
|
*/
|
|
/*@}*/
|
|
|
|
/**
|
|
* @addtogroup ll_touch
|
|
*/
|
|
/*@{*/
|
|
|
|
|
|
bool ll_touch_init();
|
|
|
|
/*@}*/
|