Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
stm32f4-energy-monitor
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
Mark Kettner
stm32f4-energy-monitor
Commits
8a36043c
Commit
8a36043c
authored
Aug 20, 2013
by
James Pallister
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5 from AWhetter/missing_h
Added missing host_receiver.h file
parents
9ad9be77
44f3810d
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
45 additions
and
1 deletion
+45
-1
.gitignore
.gitignore
+11
-1
host/host_receiver.h
host/host_receiver.h
+34
-0
No files found.
.gitignore
View file @
8a36043c
...
...
@@ -7,3 +7,13 @@ recv
*.i
output_results
*.swp
.deps
.libs
host/Makefile
autom4te.cache
config.log
config.status
libtool
pyenergy.la
*.lo
stamp-h1
host/host_receiver.h
0 → 100644
View file @
8a36043c
#ifndef __HOST_RECEIVER_H__
#define __HOST_RECEIVER_H__
using
namespace
std
;
void
cmd_connect
();
void
cmd_connect_to
(
string
connect_to
);
void
cmd_getserial
();
void
cmd_setserial
(
string
new_serial
);
void
cmd_setresistor
(
string
new_resist
);
void
cmd_setrefvoltage
(
string
new_voltage
);
void
cmd_setgain
(
string
new_gain
);
void
cmd_trigger
(
string
trigger
);
void
cmd_leds
();
void
cmd_start
();
void
cmd_start_with_file
(
string
output_file
);
void
cmd_stop
();
void
cmd_power
();
void
cmd_power_set
(
string
power
);
void
cmd_mode
(
string
new_mode
);
void
cmd_help
();
void
cmd_exit
();
void
processCommand
(
string
input
);
#endif
/* __HOST_RECEIVER_H__ */
Write
Preview
Markdown
is supported
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