-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disabling the task to reset the packet buffers #20
- Loading branch information
Showing
2 changed files
with
5 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ | |
* | ||
* \author Gabriel Mariano Marcelino <[email protected]> | ||
* | ||
* \version 0.6.8 | ||
* \version 0.6.9 | ||
* | ||
* \date 10/09/2017 | ||
* | ||
|
@@ -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); | ||
} | ||
|
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 |
---|---|---|
|
@@ -25,7 +25,7 @@ | |
* | ||
* \author Gabriel Mariano Marcelino <[email protected]> | ||
* | ||
* \version 0.6.8 | ||
* \version 0.6.9 | ||
* | ||
* \date 13/02/2019 | ||
* | ||
|
@@ -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_ | ||
|
||
|