summaryrefslogtreecommitdiff
path: root/src/lib/gsm_receiver_cf.h
diff options
context:
space:
mode:
authorPiotr Krysik <perper@o2.pl>2009-06-13 17:28:03 +0200
committerPiotr Krysik <perper@o2.pl>2009-06-13 17:28:03 +0200
commitd406d48293c998567d628d950c66da1ca8ded39c (patch)
tree6069ed5d899d8f328931795a8d560d15c66198d1 /src/lib/gsm_receiver_cf.h
parent8d22cd691b045295fd2de22e37868346ab0b0c45 (diff)
cch decoding now works! but I have to remove it in the future :)
Diffstat (limited to 'src/lib/gsm_receiver_cf.h')
-rw-r--r--src/lib/gsm_receiver_cf.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/lib/gsm_receiver_cf.h b/src/lib/gsm_receiver_cf.h
index e48feb6..af13618 100644
--- a/src/lib/gsm_receiver_cf.h
+++ b/src/lib/gsm_receiver_cf.h
@@ -29,6 +29,8 @@
#include <gsm_constants.h>
#include <gsm_receiver_config.h>
+#include <gsmstack.h> //TODO: remember to remove this line in the future!
+
class gsm_receiver_cf;
typedef boost::shared_ptr<gsm_receiver_cf> gsm_receiver_cf_sptr;
@@ -93,6 +95,9 @@ class gsm_receiver_cf : public gr_block
burst_counter d_burst_nr; ///< frame number and timeslot number
channel_configuration d_channel_conf; ///< mapping of burst_counter to burst_type
//@}
+
+ // GSM Stack
+ GS_CTX d_gs_ctx;//TODO: remove it! it'a not right place for a decoder
friend gsm_receiver_cf_sptr gsm_make_receiver_cf(gr_feval_dd *tuner, int osr);
gsm_receiver_cf(gr_feval_dd *tuner, int osr);
@@ -204,9 +209,9 @@ class gsm_receiver_cf : public gr_block
/**
*
* @param burst_nr
- * @param pakiet
+ * @param burst_binary
*/
- void process_normal_burst(burst_counter burst_nr, unsigned char * pakiet);
+ void process_normal_burst(burst_counter burst_nr, const unsigned char * burst_binary);
/**
*
personal git repositories of Harald Welte. Your mileage may vary