Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
firmware
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
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
François Revol
firmware
Commits
c5c2ef05
Commit
c5c2ef05
authored
5 years ago
by
schneider
Browse files
Options
Downloads
Patches
Plain Diff
chore(bsec): code style
parent
ab5d0ff3
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
epicardium/modules/bsec.c
+104
-78
104 additions, 78 deletions
epicardium/modules/bsec.c
with
104 additions
and
78 deletions
epicardium/modules/bsec.c
+
104
−
78
View file @
c5c2ef05
...
...
@@ -52,10 +52,21 @@ int64_t get_timestamp_us()
*
* @return none
*/
void
output_ready
(
int64_t
timestamp
,
float
iaq
,
uint8_t
iaq_accuracy
,
float
temperature
,
float
humidity
,
float
pressure
,
float
raw_temperature
,
float
raw_humidity
,
float
gas
,
bsec_library_return_t
bsec_status
,
float
static_iaq
,
float
co2_equivalent
,
float
breath_voc_equivalent
)
{
void
output_ready
(
int64_t
timestamp
,
float
iaq
,
uint8_t
iaq_accuracy
,
float
temperature
,
float
humidity
,
float
pressure
,
float
raw_temperature
,
float
raw_humidity
,
float
gas
,
bsec_library_return_t
bsec_status
,
float
static_iaq
,
float
co2_equivalent
,
float
breath_voc_equivalent
)
{
return
;
printf
(
"bosch data time: %u, iaq: %u, iaq_a: %u, temp10: %u, hum10: %u, pres: %u, raw_temp10: %u, raw_hum10: %u, gas: %u, static_iaq: %u, co21e6: %u, breath_voc1e6: %u
\n
"
,
(
unsigned
int
)(
timestamp
/
9e6
),
...
...
@@ -69,8 +80,7 @@ void output_ready(int64_t timestamp, float iaq, uint8_t iaq_accuracy, float temp
(
unsigned
int
)(
gas
),
(
unsigned
int
)(
static_iaq
),
(
unsigned
int
)(
co2_equivalent
*
1e6
),
(
unsigned
int
)(
breath_voc_equivalent
*
1e6
)
);
(
unsigned
int
)(
breath_voc_equivalent
*
1e6
));
}
static
int
bsec_load
(
char
*
path
,
uint8_t
*
buffer
,
uint32_t
n_buffer
)
...
...
@@ -86,7 +96,8 @@ static int bsec_load(char *path, uint8_t *buffer, uint32_t n_buffer)
}
uint32_t
header
;
if
((
res
=
epic_file_read
(
fd
,
&
header
,
sizeof
(
header
)))
!=
sizeof
(
header
))
{
if
((
res
=
epic_file_read
(
fd
,
&
header
,
sizeof
(
header
)))
!=
sizeof
(
header
))
{
printf
(
"Header failed
\n
"
);
goto
done
;
}
...
...
@@ -141,7 +152,8 @@ void state_save(const uint8_t *state_buffer, uint32_t length)
}
uint32_t
header
=
length
;
if
((
res
=
epic_file_write
(
fd
,
&
header
,
sizeof
(
header
)))
!=
sizeof
(
header
))
{
if
((
res
=
epic_file_write
(
fd
,
&
header
,
sizeof
(
header
)))
!=
sizeof
(
header
))
{
printf
(
"Header failed
\n
"
);
goto
done
;
}
...
...
@@ -218,17 +230,24 @@ void vBSECTask(void *pvParameters)
/* Switch on ultra_low-power mode and provide no temperature offset */
ret = bsec_iot_init(BSEC_SAMPLE_RATE_ULP, 0.0f, card10_bosch_i2c_write, card10_bosch_i2c_read, card10_bosch_delay, state_load, config_load);
#else
ret
=
bsec_iot_init
(
BSEC_SAMPLE_RATE_LP
,
0
.
0
f
,
card10_bosch_i2c_write
,
card10_bosch_i2c_read
,
card10_bosch_delay
,
state_load
,
config_load
);
ret
=
bsec_iot_init
(
BSEC_SAMPLE_RATE_LP
,
0
.
0
f
,
card10_bosch_i2c_write
,
card10_bosch_i2c_read
,
card10_bosch_delay
,
state_load
,
config_load
);
#endif
if
(
ret
.
bme680_status
)
{
if
(
ret
.
bme680_status
)
{
/* Could not intialize BME680 or BSEC library */
while
(
1
);
}
else
if
(
ret
.
bsec_status
)
{
while
(
1
)
;
}
else
if
(
ret
.
bsec_status
)
{
/* Could not intialize BSEC library */
while
(
1
);
while
(
1
)
;
}
/* Call to endless loop function which reads and processes data based on sensor settings */
#if 0
...
...
@@ -239,7 +258,14 @@ void vBSECTask(void *pvParameters)
//bsec_iot_loop(card10_bosch_delay, get_timestamp_us, output_ready, state_save, 10000);
/* State is saved every 100 samples, which means every 1200 * 3 secs = 60 minutes */
bsec_iot_loop
(
card10_bosch_delay
,
get_timestamp_us
,
output_ready
,
state_save
,
1200
);
bsec_iot_loop
(
card10_bosch_delay
,
get_timestamp_us
,
output_ready
,
state_save
,
1200
);
#endif
while
(
1
);
while
(
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