/* $Id: gsm.h,v 1.3 2010/04/25 02:15:12 khorben Exp $ */ /* Copyright (c) 2010 Pierre Pronchery */ /* This file is part of DeforaOS Desktop Phone */ /* 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, version 3 of the License. * * 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, see . */ #ifndef PHONE_GSM_H # define PHONE_GSM_H /* GSM */ /* types */ typedef struct _GSM GSM; /* functions */ GSM * gsm_new(char const * device, unsigned int baudrate); void gsm_delete(GSM * gsm); /* accessors */ unsigned int gsm_get_retry(GSM * gsm); void gsm_set_retry(GSM * gsm, unsigned int retry); /* useful */ int gsm_call(GSM * gsm, char const * number); int gsm_hangup(GSM * gsm); void gsm_reset(GSM * gsm, unsigned int delay); /* modem */ /* XXX considering making these private */ int gsm_modem_call(GSM * gsm, char const * number); int gsm_modem_call_last(GSM * gsm); int gsm_modem_hangup(GSM * gsm); int gsm_modem_queue(GSM * gsm, char const * command); int gsm_modem_reset(GSM * gsm); int gsm_modem_send_dtmf(GSM * gsm, char const * sequence); int gsm_modem_set_echo(GSM * gsm, int echo); #endif /* !PHONE_GSM_H */