Skip to content
GitLab
Menu
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
913b185f
Commit
913b185f
authored
May 24, 2021
by
Thomas Edwards
Browse files
Removed forcing default settings on GSM90 logging
parent
d6f60765
Changes
1
Hide whitespace changes
Inline
Side-by-side
usr/src/GSM90_Logger.cpp
View file @
913b185f
...
...
@@ -55,12 +55,12 @@ int main(int argc, char* argv[]){
serial
.
receive
(
buf
,
sizeof
(
buf
),
5
);
std
::
cerr
<<
buf
<<
std
::
endl
;
// Set to default
cmd
=
"&"
;
cmd
=
cmd
+
(
char
)
13
;
serial
.
send
((
const
char
*
)
cmd
.
c_str
());
serial
.
receive
(
buf
,
sizeof
(
buf
),
5
);
std
::
cerr
<<
buf
<<
std
::
endl
;
//
//
Set to default
//
cmd = "&";
//
cmd=cmd+(char) 13;
//
serial.send((const char*) cmd.c_str());
//
serial.receive(buf,sizeof(buf),5);
//
std::cerr << buf << std::endl;
// Run
cmd
=
"R"
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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