forked from ptrkrysik/gr-gsm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'fixeria/trx' of https://github.com/axilirator/gr-gsm in…
…to fixeria_trx # Resolved conflicts: # apps/grgsm_trx # python/trx/radio_if.py # swig/grgsm_swig.i
- Loading branch information
Showing
14 changed files
with
466 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/* -*- c++ -*- */ | ||
/* @file | ||
* @author Piotr Krysik <[email protected]> | ||
* @author Vadim Yanitskiy <[email protected]> | ||
* @section LICENSE | ||
* | ||
* Gr-gsm 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 3, or (at your option) | ||
* any later version. | ||
* | ||
* Gr-gsm 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 gr-gsm; see the file COPYING. If not, write to | ||
* the Free Software Foundation, Inc., 51 Franklin Street, | ||
* Boston, MA 02110-1301, USA. | ||
* | ||
*/ | ||
|
||
#ifndef INCLUDED_GRGSM_BURST_TO_FN_TIME_H | ||
#define INCLUDED_GRGSM_BURST_TO_FN_TIME_H | ||
|
||
#include <grgsm/api.h> | ||
#include <gnuradio/block.h> | ||
|
||
namespace gr { | ||
namespace gsm { | ||
|
||
/*! | ||
* \brief <+description of block+> | ||
* \ingroup gsm | ||
* | ||
*/ | ||
class GRGSM_API burst_to_fn_time : virtual public gr::block | ||
{ | ||
public: | ||
typedef boost::shared_ptr<burst_to_fn_time> sptr; | ||
|
||
/*! | ||
* \brief Return a shared_ptr to a new instance of grgsm::burst_to_fn_time. | ||
* | ||
* To avoid accidental use of raw pointers, grgsm::burst_to_fn_time's | ||
* constructor is in a private implementation | ||
* class. grgsm::burst_to_fn_time::make is the public interface for | ||
* creating new instances. | ||
*/ | ||
static sptr make(); | ||
}; | ||
|
||
} // namespace gsm | ||
} // namespace gr | ||
|
||
#endif /* INCLUDED_GRGSM_BURST_TO_FN_TIME_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,5 +37,6 @@ add_sources( | |
fn_time.cc | ||
udp_socket.cc | ||
trx_burst_if_impl.cc | ||
burst_to_fn_time_impl.cc | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
/* -*- c++ -*- */ | ||
/* @file | ||
* @author Piotr Krysik <[email protected]> | ||
* @author Vadim Yanitskiy <[email protected]> | ||
* @section LICENSE | ||
* | ||
* Gr-gsm 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 3, or (at your option) | ||
* any later version. | ||
* | ||
* Gr-gsm 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 gr-gsm; see the file COPYING. If not, write to | ||
* the Free Software Foundation, Inc., 51 Franklin Street, | ||
* Boston, MA 02110-1301, USA. | ||
* | ||
*/ | ||
|
||
#ifdef HAVE_CONFIG_H | ||
#include "config.h" | ||
#endif | ||
|
||
#include <gnuradio/io_signature.h> | ||
#include "burst_to_fn_time_impl.h" | ||
|
||
namespace gr { | ||
namespace gsm { | ||
|
||
burst_to_fn_time::sptr | ||
burst_to_fn_time::make(void) | ||
{ | ||
return gnuradio::get_initial_sptr | ||
(new burst_to_fn_time_impl()); | ||
} | ||
|
||
/* | ||
* The private constructor | ||
*/ | ||
burst_to_fn_time_impl::burst_to_fn_time_impl(void) | ||
: gr::block("burst_to_fn_time", | ||
gr::io_signature::make(0, 0, 0), | ||
gr::io_signature::make(0, 0, 0)) | ||
{ | ||
// Register I/O ports | ||
message_port_register_in(pmt::mp("bursts_in")); | ||
message_port_register_out(pmt::mp("fn_time_out")); | ||
|
||
// Bind a port handler | ||
set_msg_handler(pmt::mp("bursts_in"), | ||
boost::bind(&burst_to_fn_time_impl::handle_burst, this, _1)); | ||
} | ||
|
||
/* | ||
* Our virtual destructor. | ||
*/ | ||
burst_to_fn_time_impl::~burst_to_fn_time_impl() | ||
{ | ||
} | ||
|
||
void | ||
burst_to_fn_time_impl::handle_burst(pmt::pmt_t msg_in) | ||
{ | ||
// Obtain fn_time tag from message | ||
pmt::pmt_t blob = pmt::car(msg_in); | ||
pmt::pmt_t fn_time = pmt::dict_ref(blob, | ||
pmt::intern("fn_time"), pmt::PMT_NIL); | ||
|
||
// Drop messages without required tag | ||
if (fn_time == pmt::PMT_NIL) | ||
return; | ||
|
||
// Compose and send a new message | ||
pmt::pmt_t msg_out = pmt::dict_add(pmt::make_dict(), | ||
pmt::intern("fn_time"), fn_time); | ||
message_port_pub(pmt::mp("fn_time_out"), msg_out); | ||
} | ||
|
||
} /* namespace gsm */ | ||
} /* namespace gr */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* -*- c++ -*- */ | ||
/* @file | ||
* @author Piotr Krysik <[email protected]> | ||
* @author Vadim Yanitskiy <[email protected]> | ||
* @section LICENSE | ||
* | ||
* Gr-gsm 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 3, or (at your option) | ||
* any later version. | ||
* | ||
* Gr-gsm 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 gr-gsm; see the file COPYING. If not, write to | ||
* the Free Software Foundation, Inc., 51 Franklin Street, | ||
* Boston, MA 02110-1301, USA. | ||
* | ||
*/ | ||
|
||
#ifndef INCLUDED_GRGSM_BURST_TO_FN_TIME_IMPL_H | ||
#define INCLUDED_GRGSM_BURST_TO_FN_TIME_IMPL_H | ||
|
||
#include <grgsm/misc_utils/burst_to_fn_time.h> | ||
|
||
namespace gr { | ||
namespace gsm { | ||
|
||
class burst_to_fn_time_impl : public burst_to_fn_time | ||
{ | ||
private: | ||
void handle_burst(pmt::pmt_t msg_in); | ||
|
||
public: | ||
burst_to_fn_time_impl(void); | ||
~burst_to_fn_time_impl(void); | ||
}; | ||
|
||
} // namespace gsm | ||
} // namespace gr | ||
|
||
#endif /* INCLUDED_GRGSM_BURST_TO_FN_TIME_IMPL_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.