forked from Archive/PX4-Autopilot
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…
Reference in New Issue