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
24af02b4
Commit
24af02b4
authored
1 year ago
by
Pascal Engeler
Browse files
Options
Downloads
Patches
Plain Diff
Added firmware for temperature monitoring
parent
4ca0fda8
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
firmware/temperature_monitor/temperature_monitor.ino
+86
-0
86 additions, 0 deletions
firmware/temperature_monitor/temperature_monitor.ino
with
86 additions
and
0 deletions
firmware/temperature_monitor/temperature_monitor.ino
0 → 100644
+
86
−
0
View file @
24af02b4
#include
<Arduino.h>
#include
<SPI.h>
#include
<ltc6992.hpp>
#include
<ad7124_4.hpp>
#include
<ad7124_registers.hpp>
#include
<spi_selecta.hpp>
#include
<temp_table.hpp>
#include
<utility.hpp>
#include
<temperature_communicator.hpp>
#define SPIRATE 84000000/32
#define nCS_0 4
#define nCS_1 10
#define nCS_2 52
#define nCS_3 46
/*SPI Settings*/
SPISettings
spisettings
=
SPISettings
(
SPIRATE
,
MSBFIRST
,
SPI_MODE3
);
/*ADC Device Handles*/
Ad7124_4
adc
(
nCS_2
,
&
spisettings
);
/*ADC Data Storage*/
Adc_data
adcData
;
void
setup
()
{
SerialUSB
.
begin
(
9600
);
Ltc6992
::
init
();
Spi_selecta
::
register_device
(
&
adc
);
SPI
.
begin
();
delay
(
2000
);
Spi_selecta
::
select_device
(
&
adc
);
adc
.
reset
();
delay
(
2000
);
adc
.
write_register
<
uint16_t
>
(
REG_ADC_CONTROL
,
ADC_CONTROL_REF_EN_1
|
ADC_CONTROL_POWER_MODE_FULL_POWER
|
ADC_CONTROL_Mode_CONTINUOUS
|
ADC_CONTROL_CLK_SEL_INTERNAL
|
ADC_CONTROL_nCS_EN_1
// | ADC_CONTROL_DATA_STATUS_1
);
adc
.
write_register
<
uint16_t
>
(
REG_CONFIG_0
,
CONFIG_Burnout_OFF
|
CONFIG_REF_BUFP_1
|
CONFIG_REF_BUFM_1
|
CONFIG_AIN_BUFP_1
|
CONFIG_AIN_BUFM_1
|
CONFIG_REF_SEL_INTERNAL
|
CONFIG_PGA_GAIN1
);
adc
.
write_register
<
uint32_t
>
(
REG_FILTER_0
,
FILTER_Filter_SINC4
|
FILTER_FS_2047
);
/*Setup channel 0*/
adc
.
write_register
<
uint16_t
>
(
REG_CHANNEL_0
,
CHANNEL_Enable_1
|
CHANNEL_Setup_0
|
CHANNEL_AINP_AIN0
|
CHANNEL_AINM_AIN1
);
/*Setup channel 1*/
//adc.write_register<uint16_t>(
// REG_CHANNEL_1,
// CHANNEL_Enable_1 | CHANNEL_Setup_0 | CHANNEL_AINP_AIN2 | CHANNEL_AINM_AIN3
//);
/*Setup channel 2*/
//adc.write_register<uint16_t>(
// REG_CHANNEL_2,
// CHANNEL_Enable_1 | CHANNEL_Setup_0 | CHANNEL_AINP_AIN4 | CHANNEL_AINM_AIN5
//);
//Setup channel 3
//adc.write_register<uint16_t>(
// REG_CHANNEL_3,
// CHANNEL_Enable_1 | CHANNEL_Setup_0 | CHANNEL_AINP_AIN6 | CHANNEL_AINM_AIN7
//);
Spi_selecta
::
deselect_device
();
}
void
loop
()
{
/*Read ADC Data*/
adcData
=
readAdc
(
&
adc
);
if
(
adcData
.
valid
&&
adcData
.
channel
<
2u
){
Temperatures
::
temperatures
[
adcData
.
channel
]
=
data_to_temperature
(
adcData
.
data
);
}
/*Receive Commands*/
TemperatureCommunicator
::
communicate
();
}
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