Skip to content

Commit

Permalink
Disabling the task to reset the packet buffers #20
Browse files Browse the repository at this point in the history
  • Loading branch information
mgm8 committed Jun 25, 2019
1 parent 9d5cfa5 commit d48fa47
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/fsat-grs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
*
* \author Gabriel Mariano Marcelino <[email protected]>
*
* \version 0.6.8
* \version 0.6.9
*
* \date 10/09/2017
*
Expand Down Expand Up @@ -837,8 +837,8 @@ int FSatGRS::Run(Glib::RefPtr<Gtk::Application> app)
auto timer_slot = sigc::mem_fun(*this, &FSatGRS::Timer);
auto conn = Glib::signal_timeout().connect(timer_slot, DATA_RECEPTION_SAMPLE_RATE);

auto timer_slot_buffer_reset = sigc::mem_fun(*this, &FSatGRS::TimerBufferReset);
auto conn_buffer_reset = Glib::signal_timeout().connect(timer_slot_buffer_reset, DATA_RECEPTION_BUFFER_RESET_PERIOD_MS);
// auto timer_slot_buffer_reset = sigc::mem_fun(*this, &FSatGRS::TimerBufferReset);
// auto conn_buffer_reset = Glib::signal_timeout().connect(timer_slot_buffer_reset, DATA_RECEPTION_BUFFER_RESET_PERIOD_MS);

return app->run(*window_fsat_grs);
}
Expand Down
4 changes: 2 additions & 2 deletions src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
*
* \author Gabriel Mariano Marcelino <[email protected]>
*
* \version 0.6.8
* \version 0.6.9
*
* \date 13/02/2019
*
Expand All @@ -37,7 +37,7 @@
#ifndef VERSION_H_
#define VERSION_H_

#define GRS_SOFTWARE_VERSION "0.6.8"
#define GRS_SOFTWARE_VERSION "0.6.9"

#endif // VERSION_H_

Expand Down

0 comments on commit d48fa47

Please sign in to comment.