aboutsummaryrefslogtreecommitdiff
path: root/plugins/telit/mm-modem-helpers-telit.h
blob: 0c52bb7bc071d7d21a5e2f700b3c12f450fd2f78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * 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:
 *
 * Copyright (C) 2015-2019 Telit.
 * Copyright (C) 2019 Aleksander Morgado <aleksander@aleksander.es>
 */
#ifndef MM_MODEM_HELPERS_TELIT_H
#define MM_MODEM_HELPERS_TELIT_H

#include <glib.h>
#include "ModemManager.h"

/* #BND response parsers and request builder */
GArray *mm_telit_parse_bnd_query_response (const gchar  *response,
                                           gboolean      modem_is_2g,
                                           gboolean      modem_is_3g,
                                           gboolean      modem_is_4g,
                                           gboolean      modem_alternate_3g_bands,
                                           gpointer      log_object,
                                           GError      **error);
GArray *mm_telit_parse_bnd_test_response  (const gchar  *response,
                                           gboolean      modem_is_2g,
                                           gboolean      modem_is_3g,
                                           gboolean      modem_is_4g,
                                           gboolean      modem_alternate_3g_bands,
                                           gpointer      log_object,
                                           GError      **error);
gchar  *mm_telit_build_bnd_request        (GArray       *bands_array,
                                           gboolean      modem_is_2g,
                                           gboolean      modem_is_3g,
                                           gboolean      modem_is_4g,
                                           gboolean      modem_alternate_3g_bands,
                                           GError      **error);

/* #QSS? response parser */
typedef enum { /*< underscore_name=mm_telit_qss_status >*/
    QSS_STATUS_UNKNOWN = -1,
    QSS_STATUS_SIM_REMOVED,
    QSS_STATUS_SIM_INSERTED,
    QSS_STATUS_SIM_INSERTED_AND_UNLOCKED,
    QSS_STATUS_SIM_INSERTED_AND_READY,
} MMTelitQssStatus;

MMTelitQssStatus mm_telit_parse_qss_query (const gchar *response, GError **error);

/* CSIM lock state */
typedef enum { /*< underscore_name=mm_telit_csim_lock_state >*/
    CSIM_LOCK_STATE_UNKNOWN,
    CSIM_LOCK_STATE_UNLOCKED,
    CSIM_LOCK_STATE_LOCK_REQUESTED,
    CSIM_LOCK_STATE_LOCKED,
} MMTelitCsimLockState;

GArray *mm_telit_build_modes_list (void);

#endif  /* MM_MODEM_HELPERS_TELIT_H */