blob: 1bd1bc55a99fa408d01f6fa027d65e0fe16b46b2 [file] [log] [blame]
Holger Freyther76c95692009-02-17 20:31:30 +00001/* GSM utility functions, e.g. coding and decoding */
2/*
3 * (C) 2008 by Daniel Willmann <daniel@totalueberwachung.de>
4 * (C) 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
Harald Welte7e310b12009-03-30 20:56:32 +00005 * (C) 2009 by Harald Welte <laforge@gnumonks.org>
Holger Freyther76c95692009-02-17 20:31:30 +00006 *
7 * All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 *
23 */
24
25#ifndef GSM_UTILS_H
26#define GSM_UTILS_H
27
28#include <sys/types.h>
29
Harald Welte7e310b12009-03-30 20:56:32 +000030int gsm_7bit_decode(char *decoded, const u_int8_t *user_data, u_int8_t length);
31int gsm_7bit_encode(u_int8_t *result, const char *data);
Holger Freyther76c95692009-02-17 20:31:30 +000032
Harald Welte66b6a8d2009-08-09 14:45:18 +020033int ms_pwr_ctl_lvl(enum gsm_band band, unsigned int dbm);
34int ms_pwr_dbm(enum gsm_band band, u_int8_t lvl);
Holger Hans Peter Freyther25f30ba2009-10-28 09:12:43 +010035
36void generate_backtrace();
Holger Freyther76c95692009-02-17 20:31:30 +000037#endif