Skip to content

Commit

Permalink
added handle pipelining from gnuradio block
Browse files Browse the repository at this point in the history
  • Loading branch information
alon committed Apr 14, 2024
1 parent 8d80e83 commit c767052
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 0 additions & 5 deletions software/gr-caribouLite/lib/caribouLiteSource_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,6 @@ namespace gr {
_radio->StartReceiving();
}

uint64_t caribouLiteSource_impl::getHandle() const
{
return (uint64_t)((void*)(_radio));
}

// virtual destructor
//-------------------------------------------------------------------------------------------------------------
caribouLiteSource_impl::~caribouLiteSource_impl()
Expand Down
5 changes: 4 additions & 1 deletion software/gr-caribouLite/lib/caribouLiteSource_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,10 @@ namespace gr
gr_vector_void_star &output_items
);

uint64_t caribouLiteSource_impl::getHandle() const;
uint64_t getHandle() const
{
return (uint64_t)((void*)(_radio));
}
};

} // namespace caribouLite
Expand Down

0 comments on commit c767052

Please sign in to comment.