summaryrefslogtreecommitdiff
path: root/gsm-tvoid/src/lib/fire_crc.h
diff options
context:
space:
mode:
authortvoid <tvoid@lesaige.com>2008-04-25 13:53:28 -0600
committertvoid <tvoid@lesaige.com>2008-04-25 13:53:28 -0600
commit3f97e0be9f90c505f34afa8371c25a0ffa3e97c1 (patch)
treeed3d0d003578308b37f1012621dfa16429ee7c3a /gsm-tvoid/src/lib/fire_crc.h
parente4e5a96c7b587439129d9ed35dc15017344cd250 (diff)
parent5c781454444452d2eb02081c10ab4fdb4f8ac7f9 (diff)
Merge commit 'origin/HEAD' into 20080415
Conflicts: gsm-tvoid/src/lib/Makefile.am gsm-tvoid/src/lib/gsm.i gsm-tvoid/src/lib/gsm_burst.cc gsm-tvoid/src/lib/gsm_burst.h gsm-tvoid/src/lib/gsm_burst_cf.cc gsm-tvoid/src/lib/gsm_burst_cf.h gsm-tvoid/src/python/gsm_scan.py
Diffstat (limited to 'gsm-tvoid/src/lib/fire_crc.h')
-rw-r--r--gsm-tvoid/src/lib/fire_crc.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/gsm-tvoid/src/lib/fire_crc.h b/gsm-tvoid/src/lib/fire_crc.h
new file mode 100644
index 0000000..15d5b81
--- /dev/null
+++ b/gsm-tvoid/src/lib/fire_crc.h
@@ -0,0 +1,46 @@
+/* -*- c++ -*- */
+/*
+ * Copyright 2005 Free Software Foundation, Inc.
+ *
+ * This file is part of GNU Radio
+ *
+ * GNU Radio 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, or (at your option)
+ * any later version.
+ *
+ * GNU Radio 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 GNU Radio; see the file COPYING. If not, write to
+ * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+
+#ifndef INCLUDED_FIRE_CRC_H
+#define INCLUDED_FIRE_CRC_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+typedef struct
+{
+ unsigned int crc_size;
+ unsigned int data_size;
+ unsigned int syn_start;
+ int syndrome_reg[40];
+} FC_CTX;
+
+int FC_init(FC_CTX *ctx, unsigned int crc_size, unsigned int data_size);
+int FC_check_crc(FC_CTX *ctx, unsigned char *input_bits, unsigned char *control_data);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
personal git repositories of Harald Welte. Your mileage may vary