summaryrefslogtreecommitdiff
path: root/cleopatre/application/managerd/inc/simple_connect.h
diff options
context:
space:
mode:
authorCeline Buret2010-10-29 15:44:03 +0200
committerCeline Buret2010-10-29 15:59:44 +0200
commita92f102a1e7ed39a6982a8f0a1b4973837a08900 (patch)
tree948e2e203541194b899f43e403b70aa6223ee5d6 /cleopatre/application/managerd/inc/simple_connect.h
parent35e1f9ad9686943d69c8fc895636c23ac5890d71 (diff)
cleo/app/mgrd: rename sc and led files into gpio_event, closes #2010
Diffstat (limited to 'cleopatre/application/managerd/inc/simple_connect.h')
-rw-r--r--cleopatre/application/managerd/inc/simple_connect.h67
1 files changed, 0 insertions, 67 deletions
diff --git a/cleopatre/application/managerd/inc/simple_connect.h b/cleopatre/application/managerd/inc/simple_connect.h
deleted file mode 100644
index 8a06c4283b..0000000000
--- a/cleopatre/application/managerd/inc/simple_connect.h
+++ /dev/null
@@ -1,67 +0,0 @@
-/*
- * cleopatre/application/managerd/inc/simple_connect.h
- *
- * (C) Copyright 2009 SPiDCOM Technologies
- *
- * 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 program 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., 59 Temple Place, Suite 330, Boston,
- * MA 02111-1307 USA
- */
-#ifndef SIMPLE_CONNECT_H
-#define SIMPLE_CONNECT_H
-
-#include "managerd.h"
-
-/** GPIO number for SC button and it associated LED */
-#define SC_BUT_GPIO_NUM 1
-
-/** name of the gpio device */
-#define GPIO_DEVICE_NAME "/dev/gpio"
-
-/**
- * Simple Connect detection event.
- *
- * \param ctx managerd context
- * \return error code
- */
-int
-simple_connect_event (struct managerd_ctx *ctx);
-
-/**
- * Simple Connect reset event.
- *
- * \param ctx managerd context
- * \return error code
- */
-int
-simple_connect_reset (struct managerd_ctx *ctx);
-
-/**
- * Open and set GPIO direction.
- *
- * \param ctx managerd context
- * \return error code
- */
-int
-simple_connect_init (struct managerd_ctx *ctx);
-
-/**
- * Close gpio device.
- *
- * \param ctx managerd context
- */
-void
-simple_connect_uninit (struct managerd_ctx *ctx);
-
-#endif /* SIMPLE_CONNECT_H */