Skip to content

Commit f3e7d14

Browse files
hamishwilleePX4BuildBotsfuhrer
authored
[Docs] msg/VehicleAirData.msg - to standard (#25228)
* [Docs] msg/VehicleAirData.msg - to standard * Update msg/VehicleAirData.msg * Update msg/VehicleAirData.msg * Update msg/VehicleAirData.msg Co-authored-by: Silvan Fuhrer <silvan@auterion.com> * Update msg/VehicleAirData.msg * Fix up build issue related to docs_deploy2 --------- Co-authored-by: PX4BuildBot <bot@pixhawk.org> Co-authored-by: Silvan Fuhrer <silvan@auterion.com>
1 parent 72796a9 commit f3e7d14

File tree

2 files changed

+29
-23
lines changed

2 files changed

+29
-23
lines changed

.github/workflows/docs_deploy2.yml

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,21 @@ name: Docs - Deploy PX4 User Guide to AWS
33
on:
44
push:
55
branches:
6-
- 'main'
7-
- 'release/**'
6+
- "main"
7+
- "release/**"
88
paths:
9-
- 'docs/en/**'
9+
- "docs/en/**"
1010
pull_request:
1111
branches:
12-
- '**'
12+
- "**"
1313
paths:
14-
- 'docs/en/**'
14+
- "docs/en/**"
1515

1616
workflow_dispatch:
1717

1818
permissions:
1919
contents: read
20-
id-token: write # for AWS OIDC
20+
id-token: write # for AWS OIDC
2121

2222
concurrency:
2323
group: docs-deploy
@@ -28,7 +28,15 @@ env:
2828

2929
jobs:
3030
build:
31-
runs-on: [runs-on,runner=8cpu-linux-x64,image=ubuntu24-full-x64,"run-id=${{ github.run_id }}",spot=false,extras=s3-cache]
31+
runs-on:
32+
[
33+
runs-on,
34+
runner=8cpu-linux-x64,
35+
image=ubuntu24-full-x64,
36+
"run-id=${{ github.run_id }}",
37+
spot=false,
38+
extras=s3-cache,
39+
]
3240
steps:
3341
- uses: runs-on/action@v1
3442

@@ -94,4 +102,3 @@ jobs:
94102
--delete \
95103
--exclude "*.html" \
96104
--cache-control "public, max-age=86400, immutable"
97-

msg/VehicleAirData.msg

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
1-
2-
uint64 timestamp # time since system start (microseconds)
3-
4-
uint64 timestamp_sample # the timestamp of the raw data (microseconds)
5-
6-
uint32 baro_device_id # unique device ID for the selected barometer
7-
8-
float32 baro_alt_meter # Altitude above MSL calculated from temperature compensated baro sensor data using an ISA corrected for sea level pressure SENS_BARO_QNH.
9-
float32 baro_pressure_pa # Absolute pressure in Pascals
10-
float32 ambient_temperature # Abient temperature in degrees Celsius
11-
uint8 temperature_source # Source of temperature data: 0: Default Temperature (15°C), 1: External Baro, 2: Airspeed
12-
13-
float32 rho # air density
14-
15-
uint8 calibration_count # Calibration changed counter. Monotonically increases whenever calibration changes.
1+
# Vehicle air data
2+
#
3+
# Data from the currently selected barometer (plus ambient temperature from the source specified in temperature_source).
4+
# Includes calculated data such as barometric altitude and air density.
5+
6+
uint64 timestamp # [us] Time since system start
7+
uint64 timestamp_sample # [us] Timestamp of the raw data
8+
uint32 baro_device_id # Unique device ID for the selected barometer
9+
float32 baro_alt_meter # [m] [@frame MSL] Altitude above MSL calculated from temperature compensated baro sensor data using an ISA corrected for sea level pressure SENS_BARO_QNH
10+
float32 baro_pressure_pa # [Pa] Absolute pressure
11+
float32 ambient_temperature # [degC] Ambient temperature
12+
uint8 temperature_source # Source of temperature data: 0: Default Temperature (15°C), 1: External Baro, 2: Airspeed
13+
float32 rho # [kg/m^3] Air density
14+
uint8 calibration_count # Calibration changed counter. Monotonically increases whenever calibration changes.

0 commit comments

Comments
 (0)