mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-08-17 05:34:26 +08:00
main
1
Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
ff5b948436 |
fix(drivers/bmi270): correct FIFO watermark byte calculation (#27875)
Build all targets / Scan for Board Targets (push) Waiting to run
Build all targets / Seed [${{ matrix.chip_family }}] (push) Blocked by required conditions
Build all targets / Build [${{ matrix.runner }}][${{ matrix.group }}] (push) Blocked by required conditions
Build all targets / Upload Artifacts (push) Blocked by required conditions
Checks / Gate Checks [check_format] (push) Waiting to run
Checks / Gate Checks [check_newlines] (push) Waiting to run
Checks / Gate Checks [module_documentation] (push) Waiting to run
Checks / Gate Checks [shellcheck_all] (push) Waiting to run
Checks / Gate Checks [validate_module_configs] (push) Waiting to run
Checks / Unit Tests (push) Waiting to run
Static Analysis / Clang-Tidy (push) Waiting to run
MacOS build / build (push) Waiting to run
Ubuntu environment build / Build and Test (ubuntu:22.04) (push) Waiting to run
Ubuntu environment build / Build and Test (ubuntu:24.04) (push) Waiting to run
Container build / Set Tags and Variables (push) Waiting to run
Container build / Build Container (amd64) (push) Blocked by required conditions
Container build / Build Container (arm64) (push) Blocked by required conditions
Container build / Deploy To Registry (push) Blocked by required conditions
Docs - Orchestrator / T1: Detect Changes (push) Waiting to run
Docs - Orchestrator / T2: PR Metadata (push) Blocked by required conditions
Docs - Orchestrator / T2: Metadata Sync (push) Waiting to run
Docs - Orchestrator / T2: Link Check (push) Blocked by required conditions
Docs - Orchestrator / T3: Build Site (push) Blocked by required conditions
Docs - Orchestrator / T4: Deploy (push) Blocked by required conditions
Docs - Crowdin - Upload Guide sources (en) / upload-to-crowdin (push) Waiting to run
Failsafe Simulator Build / build (failsafe_web) (push) Waiting to run
FLASH usage analysis / Analyzing px4_fmu-v5x (push) Waiting to run
FLASH usage analysis / Analyzing px4_fmu-v6x (push) Waiting to run
FLASH usage analysis / Publish Results (push) Blocked by required conditions
ITCM check / Checking nxp_mr-tropic (push) Waiting to run
ITCM check / Checking nxp_tropic-community (push) Waiting to run
ITCM check / Checking px4_fmu-v5x (push) Waiting to run
ITCM check / Checking px4_fmu-v6xrt (push) Waiting to run
Python CI Checks / build (push) Waiting to run
ROS Integration Tests / build (push) Waiting to run
ROS Translation Node Tests / Build and test [humble] (push) Waiting to run
ROS Translation Node Tests / Build and test [jazzy] (push) Waiting to run
SITL Tests / Testing PX4 quadx (push) Waiting to run
SITL Tests / Testing PX4 standard_vtol (push) Waiting to run
SITL Tests / Testing PX4 xvert (push) Waiting to run
Sync ROS 2 messages to px4_msgs / sync_to_px4_msgs (push) Waiting to run
FIFO_WTM was computed as samples * sizeof(FIFO::Data), sizing the threshold from a single sensor's 6-byte frame instead of the actual 13-byte combined accel+gyro frame (1 header + 6 gyro + 6 accel) the FIFO stores. This made the published gyro_fifo rate and sample count no longer matched IMU_GYRO_RATEMAX. <46557204+farhangnaderi@users.noreply.github.com> |