2008-12-17 04:38:53 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008 by Mark Arigo
|
|
|
|
*
|
|
|
|
* 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 software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2009-02-18 02:19:22 +00:00
|
|
|
#ifndef SYNAPTICS_MEP_H
|
|
|
|
#define SYNAPTICS_MEP_H
|
2008-12-17 04:38:53 +00:00
|
|
|
|
2009-06-19 02:48:15 +00:00
|
|
|
int touchpad_init(void);
|
|
|
|
int touchpad_read_device(char *data, int len);
|
2010-01-18 21:20:36 +00:00
|
|
|
int touchpad_set_buttonlights(unsigned int led_mask, char brightness);
|
2010-07-04 12:03:38 +00:00
|
|
|
int touchpad_set_parameter(char mod_nr, char par_nr, unsigned int param);
|
2011-01-11 23:48:29 +00:00
|
|
|
int touchpad_get_parameter(char mod_nr, char par_nr, unsigned int *param_p);
|
2008-12-17 04:38:53 +00:00
|
|
|
|
|
|
|
#endif
|