summaryrefslogtreecommitdiff
path: root/cleopatre/application/managerd/inc/simple_connect.h
diff options
context:
space:
mode:
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 */