aboutsummaryrefslogtreecommitdiffstats
path: root/ax_python_devel.m4 (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2009-09-25additional debug outputvolker3-9/+39
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1045 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2009-09-23autoconf patches from PT M.michael11-9104/+17487
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1044 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2009-09-23indentat
/* $Id: drv_generic_gpio.h,v 1.2 2006/01/03 06:13:45 reinelt Exp $
 *
 * generic driver helper for GPIO's
 *
 * Copyright (C) 2005 Michael Reinelt <reinelt@eunet.at>
 * Copyright (C) 2005 The LCD4Linux Team <lcd4linux-devel@users.sourceforge.net>
 *
 * This file is part of LCD4Linux.
 *
 * LCD4Linux 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, or (at your option)
 * any later version.
 *
 * LCD4Linux 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, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 *
 * $Log: drv_generic_gpio.h,v $
 * Revision 1.2  2006/01/03 06:13:45  reinelt
 * GPIO's for MatrixOrbital
 *
 * Revision 1.1  2005/12/18 16:18:36  reinelt
 * GPO's added again
 *
 */


#ifndef _DRV_GENERIC_GPO_H_
#define _DRV_GENERIC_GPO_H_

#include "widget.h"

extern int GPIS;		/* number of GPO's */
extern int GPOS;		/* number of GPO's */

/* these function must be implemented by the real driver */
extern int (*drv_generic_gpio_real_set) (const int num, const int val);
extern int (*drv_generic_gpio_real_get) (const int num);

/* generic functions and widget callbacks */
int drv_generic_gpio_init(const char *section, const char *driver);
int drv_generic_gpio_clear(void);
int drv_generic_gpio_get(const int num);
int drv_generic_gpio_draw(WIDGET * W);
int drv_generic_gpio_quit(void);

#endif
x.git/commit/drivers.m4?id=ae2f27dbb3e780e6abed0e92bc02594987067aae&follow=1'>update autoconf scripts
michux4-11/+36
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1023 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2009-04-06add shuttle VFD drivermichux4-4/+454
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1022 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2009-03-31update option filemichux1-0/+2
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1021 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2009-03-31drv_vnc: http port as optionmichux1-0/+5
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1020 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2009-03-31drv_vnc: run as http daemonmichux1-2/+12
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1019 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2009-03-30fix fps delay errormichux1-1/+1
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1018 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2009-03-30add fps limitermichux2-2/+33
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1017 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2009-03-30add UNSECURE password option to drv_vnc - SSH would be the better choice.michux2-1/+17
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1016 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2009-03-28add keypadframe color as parameter, some minor fixupsmichux2-7/+21
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1015 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2009-03-28update keypad handling, add more options, remove compiler waarningsmichux2-20/+40
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1014 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2009-03-27update lcd4linux sample configmichux1-11/+11
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1013 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2009-03-27add server port as config option, rename optionsmichux2-29/+37
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1012 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2009-03-27vnc driver: keypad works nowmichux1-29/+35
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1011 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2009-03-27some more keypad stuff for vnc driver...michux2-24/+50
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1010 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2009-03-27update keypad function for vnc drivermichux1-5/+79
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1009 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2009-03-26vnc driver: add beta keypad support michux3-11/+57
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1008 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2009-03-26remove unneeded libsmichux2-2/+2
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1007 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2009-03-26add sample cfg for vnc driver, indentmichux3-6/+16
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1006 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2009-03-26add max client optionmichux1-7/+16
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1005 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2009-03-26ignore security check for cygwinmichux1-0/+2
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1004 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2009-03-26string compare is not case sensitive anymoremichux1-1/+1
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1003 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2009-03-26more cygwin fixesmichux2-2/+2
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1002 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2009-03-26fix cygwin compilemichux1-0/+19
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1001 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2009-03-25I just wanted to commit the 1000st change to lcd4linux ;)michux1-2/+2
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1000 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2009-03-25minor fixupmichux1-9/+4
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@999 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2009-03-25more vnc driver stuff...michux3-40/+59
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@998 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2009-03-25add vnc drivermichux9-114/+627
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@997 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2009-03-23test intersection of (displayable) widgetsvolker9-15/+82
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@996 3ae390bd-cb1e-0410-b409-cd5a39f66f1f