Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
Beam Positoning Monitor - Software
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Projects
Beam Positoning Monitor - Software
Commits
7034e7f4
Commit
7034e7f4
authored
8 years ago
by
Lucas Russo
Browse files
Options
Downloads
Patches
Plain Diff
libs/libbpmclient/*: add FMC250M Sleep function
parent
e8ecada8
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/libs/libbpmclient/include/bpm_client_core.h
+4
-0
4 additions, 0 deletions
src/libs/libbpmclient/include/bpm_client_core.h
src/libs/libbpmclient/src/bpm_client_core.c
+13
-0
13 additions, 0 deletions
src/libs/libbpmclient/src/bpm_client_core.c
with
17 additions
and
0 deletions
src/libs/libbpmclient/include/bpm_client_core.h
+
4
−
0
View file @
7034e7f4
...
...
@@ -392,6 +392,10 @@ bpm_client_err_e bpm_set_rst_div_adcs (bpm_client_t *self, char *service,
uint32_t
rst_div_adcs
);
bpm_client_err_e
bpm_get_rst_div_adcs
(
bpm_client_t
*
self
,
char
*
service
,
uint32_t
*
rst_div_adcs
);
bpm_client_err_e
bpm_set_sleep_adcs
(
bpm_client_t
*
self
,
char
*
service
,
uint32_t
sleep_adcs
);
bpm_client_err_e
bpm_get_sleep_adcs
(
bpm_client_t
*
self
,
char
*
service
,
uint32_t
*
sleep_adcs
);
bpm_client_err_e
bpm_set_test_mode0
(
bpm_client_t
*
self
,
char
*
service
,
uint32_t
test_mode0
);
...
...
This diff is collapsed.
Click to expand it.
src/libs/libbpmclient/src/bpm_client_core.c
+
13
−
0
View file @
7034e7f4
...
...
@@ -888,6 +888,19 @@ PARAM_FUNC_CLIENT_READ(rst_div_adcs)
rst_div_adcs
);
}
/* ISLA216P Sleep ADCs */
PARAM_FUNC_CLIENT_WRITE
(
sleep_adcs
)
{
return
param_client_write
(
self
,
service
,
FMC250M_4CH_OPCODE_SLEEP_ADCS
,
sleep_adcs
);
}
PARAM_FUNC_CLIENT_READ
(
sleep_adcs
)
{
return
param_client_read
(
self
,
service
,
FMC250M_4CH_OPCODE_SLEEP_ADCS
,
sleep_adcs
);
}
/* ISLA216P Test modes */
PARAM_FUNC_CLIENT_WRITE
(
test_mode0
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
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!
Save comment
Cancel
Please
register
or
sign in
to comment