Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
multipass
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
derf
multipass
Commits
09a4248c
Commit
09a4248c
authored
4 years ago
by
Birte Kristina Friesel
Browse files
Options
Downloads
Patches
Plain Diff
bme680-max44009-logger: improve resilience against bad wiring
parent
87c9f081
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/app/bme680-max44009-logger/main.cc
+73
-26
73 additions, 26 deletions
src/app/bme680-max44009-logger/main.cc
src/driver/max44009.cc
+3
-1
3 additions, 1 deletion
src/driver/max44009.cc
with
76 additions
and
27 deletions
src/app/bme680-max44009-logger/main.cc
+
73
−
26
View file @
09a4248c
...
...
@@ -15,12 +15,36 @@
#include
"driver/bme680_util.h"
#include
"driver/max44009.h"
#ifdef MULTIPASS_ARCH_arduino_nano
#define POWER_PIN GPIO::pc3
#endif
struct
bme680_field_data
data
;
float
lux
;
int8_t
bme680_status
;
void
loop
(
void
)
{
static
unsigned
char
i
=
0
;
if
(
lux
>=
0
&&
bme680_status
==
0
)
{
gpio
.
led_off
(
0
);
}
else
{
gpio
.
led_on
(
0
);
}
#ifdef POWER_PIN
if
(
lux
<
0
||
bme680_status
!=
0
)
{
if
(
i
==
18
)
{
kout
<<
"# Cycling power to I2C clients"
<<
endl
;
gpio
.
write
(
POWER_PIN
,
0
);
}
else
if
(
i
==
19
)
{
gpio
.
write
(
POWER_PIN
,
1
);
}
}
#endif
#ifdef MULTIPASS_ARCH_arduino_nano
if
((
i
==
1
)
&&
(
ADCSRA
&
_BV
(
ADIF
)))
{
uint8_t
adcr_l
=
ADCL
;
uint8_t
adcr_h
=
ADCH
;
...
...
@@ -32,20 +56,45 @@ void loop(void)
kout
<<
"VCC: "
<<
vcc
<<
endl
;
}
#endif
if
(
i
==
0
)
{
lux
=
max44009
.
getLux
();
if
(
lux
>=
0
)
{
kout
<<
"MAX44009: "
;
kout
.
printf_float
(
max44009
.
getLux
());
kout
<<
" lx"
<<
endl
;
}
else
{
kout
<<
"# MAX44009 error"
<<
endl
;
}
}
if
(
i
==
0
)
{
bme680
.
setSensorMode
();
bme680_status
=
bme680
.
init
();
kout
<<
"BME680 init "
<<
bme680_status
<<
endl
;
bme680
.
power_mode
=
BME680_FORCED_MODE
;
bme680
.
tph_sett
.
os_hum
=
BME680_OS_2X
;
bme680
.
tph_sett
.
os_pres
=
BME680_OS_16X
;
bme680
.
tph_sett
.
os_temp
=
BME680_OS_2X
;
bme680
.
gas_sett
.
run_gas
=
BME680_ENABLE_GAS_MEAS
;
bme680
.
gas_sett
.
heatr_dur
=
100
;
bme680
.
gas_sett
.
heatr_temp
=
300
;
bme680
.
setSensorSettings
(
BME680_OST_SEL
|
BME680_OSP_SEL
|
BME680_OSH_SEL
|
BME680_GAS_SENSOR_SEL
);
}
else
if
(
i
==
1
)
{
if
(
bme680
.
getSensorData
(
&
data
)
==
0
)
{
else
if
(
i
==
1
&&
bme680_status
==
0
)
{
bme680_status
=
bme680
.
setSensorMode
();
}
else
if
(
i
==
2
)
{
if
(
bme680_status
==
0
&&
bme680
.
getSensorData
(
&
data
)
==
0
)
{
kout
<<
"BME680 temperature: "
<<
(
float
)
data
.
temperature
/
100
<<
" degC"
<<
endl
;
kout
<<
"BME680 humidity: "
<<
(
float
)
data
.
humidity
/
1000
<<
" %"
<<
endl
;
kout
<<
"BME680 pressure: "
<<
(
float
)
data
.
pressure
/
100
<<
" hPa"
<<
endl
;
kout
<<
"BME680 gas resistance: "
<<
data
.
gas_resistance
<<
endl
;
}
else
{
kout
<<
"# BME680 error "
<<
bme680_status
<<
endl
;
}
kout
<<
"MAX44009: "
;
kout
.
printf_float
(
max44009
.
getLux
());
kout
<<
" lx"
<<
endl
;
}
i
=
(
i
+
1
)
%
20
;
...
...
@@ -53,12 +102,25 @@ void loop(void)
int
main
(
void
)
{
unsigned
short
i
=
0
;
arch
.
setup
();
gpio
.
setup
();
kout
.
setup
();
#ifdef POWER_PIN
gpio
.
output
(
POWER_PIN
);
gpio
.
write
(
POWER_PIN
,
1
);
#endif
#ifdef MULTIPASS_ARCH_arduino_nano
kout
<<
"# Reset reason: "
<<
MCUSR
<<
endl
;
MCUSR
=
0
;
/* watchdog reset after ~4 seconds */
asm
(
"wdr"
);
WDTCSR
=
_BV
(
WDCE
)
|
_BV
(
WDE
);
WDTCSR
=
_BV
(
WDE
)
|
_BV
(
WDP3
);
// One ADC conversion per four seconds
TCCR0A
=
0
;
TCCR0B
=
_BV
(
CS12
)
|
_BV
(
CS10
);
...
...
@@ -67,13 +129,14 @@ int main(void)
ADMUX
=
_BV
(
REFS0
)
|
0x0e
;
ADCSRB
=
_BV
(
ADTS2
);
ADCSRA
=
_BV
(
ADEN
)
|
_BV
(
ADATE
)
|
_BV
(
ADPS2
)
|
_BV
(
ADPS1
);
#endif
if
(
i2c
.
setup
()
!=
0
)
{
kout
<<
"I2C setup failed"
<<
endl
;
kout
<<
"
#
I2C setup failed"
<<
endl
;
return
1
;
}
kout
<<
"I2C setup OK"
<<
endl
;
kout
<<
"
#
I2C setup OK"
<<
endl
;
bme680
.
intf
=
BME680_I2C_INTF
;
bme680
.
read
=
bme680_i2c_read
;
...
...
@@ -82,22 +145,6 @@ int main(void)
bme680
.
amb_temp
=
25
;
int8_t
rslt
=
BME680_OK
;
rslt
=
bme680
.
init
();
kout
<<
"BME680 init "
<<
rslt
<<
endl
;
bme680
.
power_mode
=
BME680_FORCED_MODE
;
bme680
.
tph_sett
.
os_hum
=
BME680_OS_2X
;
bme680
.
tph_sett
.
os_pres
=
BME680_OS_16X
;
bme680
.
tph_sett
.
os_temp
=
BME680_OS_2X
;
bme680
.
gas_sett
.
run_gas
=
BME680_ENABLE_GAS_MEAS
;
bme680
.
gas_sett
.
heatr_dur
=
100
;
bme680
.
gas_sett
.
heatr_temp
=
300
;
bme680
.
setSensorSettings
(
BME680_OST_SEL
|
BME680_OSP_SEL
|
BME680_OSH_SEL
|
BME680_GAS_SENSOR_SEL
);
arch
.
delay_ms
(
200
);
arch
.
idle_loop
();
return
0
;
...
...
This diff is collapsed.
Click to expand it.
src/driver/max44009.cc
+
3
−
1
View file @
09a4248c
...
...
@@ -19,7 +19,9 @@ float MAX44009::getLux()
txbuf
[
0
]
=
0x03
;
txbuf
[
1
]
=
0x04
;
i2c
.
xmit
(
address
,
2
,
txbuf
,
2
,
rxbuf
);
if
(
i2c
.
xmit
(
address
,
2
,
txbuf
,
2
,
rxbuf
)
!=
0
)
{
return
-
1
;
}
luxHigh
=
rxbuf
[
0
];
luxLow
=
rxbuf
[
1
];
...
...
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