Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Achim Morschhauser
GeomagLogger
Commits
37aa4cd9
Commit
37aa4cd9
authored
Nov 26, 2020
by
Achim Morschhauser
Browse files
Add option for 128 Hz data output
parent
08ba433a
Changes
1
Hide whitespace changes
Inline
Side-by-side
usr/src/OBSDAQ_Logger.cpp
View file @
37aa4cd9
...
...
@@ -80,10 +80,11 @@ int main(int argc, char* argv[]) {
buffer_obs_mult
mult
=
new
buffer_obs_mult
(
new
buffer_obs_pipe
(
5
));
// Add file buffer, if file_format is given
if
(
par
.
get_str
(
"FILE_RAW"
)
!=
""
)
{
std
::
cerr
<<
"FILE_RAW BUFFER ADDED"
<<
std
::
endl
;
mult
.
add
(
new
buffer_obs_file
(
5
,
par
.
get_str
(
"DIR_VEC"
),
par
.
get_str
(
"FILE_RAW"
)));
if
(
par
.
get_str
(
"FILE_VEC_RAW"
)
!=
""
)
{
std
::
cerr
<<
"FILE_RAW BUFFER ADDED"
<<
std
::
endl
;
mult
.
add
(
new
buffer_obs_file
(
par
.
get_str
(
"FILE_VEC_FORMAT"
),
par
.
get_str
(
"DIR_VEC"
),
par
.
get_str
(
"FILE_VEC"
)));
}
// Initialize the calibration constants for FGE
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment