[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] r3516 - gnuradio/branches/developers/jcorgan/pager/gr-
From: |
jcorgan |
Subject: |
[Commit-gnuradio] r3516 - gnuradio/branches/developers/jcorgan/pager/gr-pager/src/lib |
Date: |
Sun, 10 Sep 2006 18:27:53 -0600 (MDT) |
Author: jcorgan
Date: 2006-09-10 18:27:53 -0600 (Sun, 10 Sep 2006)
New Revision: 3516
Added:
gnuradio/branches/developers/jcorgan/pager/gr-pager/src/lib/pgri_bch3221.cc
gnuradio/branches/developers/jcorgan/pager/gr-pager/src/lib/pgri_bch3221.h
Modified:
gnuradio/branches/developers/jcorgan/pager/gr-pager/src/lib/Makefile.am
Log:
Added dummy files for BCH (32,21) error correction.
Modified:
gnuradio/branches/developers/jcorgan/pager/gr-pager/src/lib/Makefile.am
===================================================================
--- gnuradio/branches/developers/jcorgan/pager/gr-pager/src/lib/Makefile.am
2006-09-11 00:05:16 UTC (rev 3515)
+++ gnuradio/branches/developers/jcorgan/pager/gr-pager/src/lib/Makefile.am
2006-09-11 00:27:53 UTC (rev 3516)
@@ -63,7 +63,8 @@
pgr.cc \
pgr_slicer_fb.cc \
pgr_flex_modes.cc \
- pgr_flex_deframer.cc
+ pgr_flex_deframer.cc \
+ pgri_bch3221.cc
# Additional source modules here
# magic flags
Added:
gnuradio/branches/developers/jcorgan/pager/gr-pager/src/lib/pgri_bch3221.cc
===================================================================
--- gnuradio/branches/developers/jcorgan/pager/gr-pager/src/lib/pgri_bch3221.cc
(rev 0)
+++ gnuradio/branches/developers/jcorgan/pager/gr-pager/src/lib/pgri_bch3221.cc
2006-09-11 00:27:53 UTC (rev 3516)
@@ -0,0 +1,31 @@
+/*
+ * Copyright 2006 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.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <pgri_bch3221.h>
+
+int pgri_bch3221(gr_int32 &data)
+{
+ return 0;
+}
Property changes on:
gnuradio/branches/developers/jcorgan/pager/gr-pager/src/lib/pgri_bch3221.cc
___________________________________________________________________
Name: svn:eol-style
+ native
Added:
gnuradio/branches/developers/jcorgan/pager/gr-pager/src/lib/pgri_bch3221.h
===================================================================
--- gnuradio/branches/developers/jcorgan/pager/gr-pager/src/lib/pgri_bch3221.h
(rev 0)
+++ gnuradio/branches/developers/jcorgan/pager/gr-pager/src/lib/pgri_bch3221.h
2006-09-11 00:27:53 UTC (rev 3516)
@@ -0,0 +1,31 @@
+/*
+ * Copyright 2006 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_PGRI_BCH3221_H
+#define INCLUDED_PGRI_BCH3221_H
+
+#include <gr_types.h>
+
+// Perform BCH (32,21) error correction on supplied data
+// Return number of errors found/corrected (0, 1, or 2)
+int pgri_bch3221(gr_int32 &data);
+
+#endif /* INCLUDED_PGRI_BCH3221_H */
Property changes on:
gnuradio/branches/developers/jcorgan/pager/gr-pager/src/lib/pgri_bch3221.h
___________________________________________________________________
Name: svn:eol-style
+ native
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Commit-gnuradio] r3516 - gnuradio/branches/developers/jcorgan/pager/gr-pager/src/lib,
jcorgan <=