Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
flow3r 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
Package Registry
Container 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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
flow3r
flow3r firmware
Commits
01bdfad0
Commit
01bdfad0
authored
1 year ago
by
schneider
Browse files
Options
Downloads
Patches
Plain Diff
imu: ignore power up fails of the BMP581
parent
e7c39ea0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!122
imu: ignore power up fails of the BMP581
Pipeline
#6595
passed
1 year ago
Stage: check
Stage: build
Stage: deploy
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
components/flow3r_bsp/flow3r_bsp_imu.c
+1
-1
1 addition, 1 deletion
components/flow3r_bsp/flow3r_bsp_imu.c
with
1 addition
and
1 deletion
components/flow3r_bsp/flow3r_bsp_imu.c
+
1
−
1
View file @
01bdfad0
...
...
@@ -210,7 +210,7 @@ esp_err_t flow3r_bsp_imu_init(flow3r_bsp_imu_t *imu) {
rslt
=
bmp5_init
(
&
imu
->
bmp
);
bmp5_error_codes_print_result
(
"bmp5_init"
,
rslt
);
if
(
rslt
!=
BMP5_OK
)
return
ESP_FAIL
;
if
(
rslt
!=
BMP5_OK
&&
rslt
!=
BMP5_E_POWER_UP
)
return
ESP_FAIL
;
rslt
=
set_bmp_config
(
&
imu
->
osr_odr_press_cfg
,
&
imu
->
bmp
);
if
(
rslt
!=
BMP5_OK
)
return
ESP_FAIL
;
...
...
This diff is collapsed.
Click to expand it.
q3k
@q3k
mentioned in issue
#49 (closed)
·
1 year ago
mentioned in issue
#49 (closed)
mentioned in issue #49
Toggle commit list
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