Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RBComb Temperature Control
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
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
Show more breadcrumbs
Pascal Engeler
RBComb Temperature Control
Commits
fb2a43ba
Commit
fb2a43ba
authored
1 year ago
by
Pascal Engeler
Browse files
Options
Downloads
Patches
Plain Diff
Added utility functionality
parent
4c05beef
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
firmware/drivers/utility/utility.cpp
+23
-0
23 additions, 0 deletions
firmware/drivers/utility/utility.cpp
firmware/drivers/utility/utility.hpp
+18
-0
18 additions, 0 deletions
firmware/drivers/utility/utility.hpp
with
41 additions
and
0 deletions
firmware/drivers/utility/utility.cpp
0 → 100644
+
23
−
0
View file @
fb2a43ba
#include
<utility.hpp>
#include
<ad7124_4.hpp>
#include
<ad7124_registers.hpp>
std
::
array
<
double
,
5
>
Temperatures
::
temperatures
=
{
0.
,
0.
,
0.
,
0.
,
0.
};
Adc_data
readAdc
(
Ad7124_4
*
device
){
Adc_data
data
;
data
.
valid
=
false
;
Spi_selecta
::
select_device
(
device
);
if
(
device
->
data_available
()){
Spi_selecta
::
deselect_device
();
Spi_selecta
::
select_device
(
device
);
data
.
channel
=
device
->
read_register
(
REG_Status
,
1
);
Spi_selecta
::
deselect_device
();
Spi_selecta
::
select_device
(
device
);
data
.
data
=
device
->
get_data
()
&
0x00FFFFFF
;
Spi_selecta
::
deselect_device
();
data
.
valid
=
true
;
}
Spi_selecta
::
deselect_device
();
return
data
;
}
This diff is collapsed.
Click to expand it.
firmware/drivers/utility/utility.hpp
0 → 100644
+
18
−
0
View file @
fb2a43ba
#ifndef UTILITY_HPP_INCLUDED
#define UTILITY_HPP_INCLUDED
#include
<ad7124_4.hpp>
struct
Adc_data
{
bool
valid
;
uint32_t
channel
;
uint32_t
data
;
};
Adc_Data
readAdc
(
Ad7124_4
*
device
);
struct
Temperatures
{
/*The 0th temperature shall always be the loop, the others the out-of-loops*/
static
std
::
array
<
double
,
5
>
temperatures
;
};
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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