aboutsummaryrefslogtreecommitdiffstats
path: root/lib/receiver/receiver_impl.h
diff options
context:
space:
mode:
authorpiotr <Piotr Krysik pkrysik@elka.pw.edu.pl>2014-08-06 15:20:33 +0200
committerpiotr <Piotr Krysik pkrysik@elka.pw.edu.pl>2014-08-06 15:20:33 +0200
commitd6d6687691d5c5c9b2e2d7270cdcf23cdaaaa902 (patch)
tree449856551633054d6fe9c19240676c442bc71cb8 /lib/receiver/receiver_impl.h
parent82c774f7726cb585bd6febc02c4d7abb251416bb (diff)
Removed redundant state from the receiver
Diffstat (limited to 'lib/receiver/receiver_impl.h')
-rw-r--r--lib/receiver/receiver_impl.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/receiver/receiver_impl.h b/lib/receiver/receiver_impl.h
index 76ad40b..de0042d 100644
--- a/lib/receiver/receiver_impl.h
+++ b/lib/receiver/receiver_impl.h
@@ -34,7 +34,6 @@ namespace gr {
class receiver_impl : public receiver
{
private:
- int d_prev_burst_start; //!!
/**@name Configuration of the receiver */
//@{
const int d_OSR; ///< oversampling ratio
@@ -60,7 +59,6 @@ namespace gr {
/**@name Variables used to store result of the find_fcch_burst fuction */
//@{
unsigned d_fcch_start_pos; ///< position of the first sample of the fcch burst
-// float d_freq_offset; ///< frequency offset of the received signal
float d_freq_offset_setting; ///< frequency offset set in frequency shifter located upstream
//@}
std::list<double> d_freq_offset_vals;
@@ -74,7 +72,7 @@ namespace gr {
/**@name Internal state of the gsm receiver */
//@{
enum states {
- first_fcch_search, next_fcch_search, sch_search, // synchronization search part
+ fcch_search, sch_search, // synchronization search part
synchronized // receiver is synchronized in this state
} d_state;
//@}