mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
enable -Wlogical-op and fix bmi160
This commit is contained in:
parent
a031552756
commit
fb5cb87e9b
@ -332,6 +332,7 @@ function(px4_add_common_flags)
|
||||
-Wfloat-equal
|
||||
-Wformat-security
|
||||
-Winit-self
|
||||
-Wlogical-op
|
||||
-Wmissing-declarations
|
||||
-Wmissing-field-initializers
|
||||
#-Wmissing-include-dirs # TODO: fix and enable
|
||||
@ -361,7 +362,6 @@ function(px4_add_common_flags)
|
||||
list(APPEND warnings
|
||||
-Wunused-but-set-variable
|
||||
-Wformat=1
|
||||
#-Wlogical-op # very verbose due to eigen
|
||||
-Wdouble-promotion
|
||||
)
|
||||
endif()
|
||||
|
||||
@ -1131,7 +1131,7 @@ BMI160::measure()
|
||||
|
||||
check_registers();
|
||||
|
||||
if ((!(status && (0x80))) && (!(status && (0x04)))) {
|
||||
if ((!(status & (0x80))) && (!(status & (0x04)))) {
|
||||
perf_end(_sample_perf);
|
||||
perf_count(_duplicates);
|
||||
_got_duplicate = true;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user