[create-pull-request] automated change (#6240)

Co-authored-by: thebentern <9000580+thebentern@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2025-03-05 20:50:20 -06:00
committed by GitHub
parent 6c8058e1d8
commit a3a9b2fe84
2 changed files with 6 additions and 4 deletions

View File

@@ -83,7 +83,9 @@ typedef enum _meshtastic_TelemetrySensorType {
/* High accuracy current and voltage */
meshtastic_TelemetrySensorType_INA226 = 34,
/* DFRobot Gravity tipping bucket rain gauge */
meshtastic_TelemetrySensorType_DFROBOT_RAIN = 35
meshtastic_TelemetrySensorType_DFROBOT_RAIN = 35,
/* Infineon DPS310 High accuracy pressure and temperature */
meshtastic_TelemetrySensorType_DPS310 = 36
} meshtastic_TelemetrySensorType;
/* Struct definitions */
@@ -314,8 +316,8 @@ extern "C" {
/* Helper constants for enums */
#define _meshtastic_TelemetrySensorType_MIN meshtastic_TelemetrySensorType_SENSOR_UNSET
#define _meshtastic_TelemetrySensorType_MAX meshtastic_TelemetrySensorType_DFROBOT_RAIN
#define _meshtastic_TelemetrySensorType_ARRAYSIZE ((meshtastic_TelemetrySensorType)(meshtastic_TelemetrySensorType_DFROBOT_RAIN+1))
#define _meshtastic_TelemetrySensorType_MAX meshtastic_TelemetrySensorType_DPS310
#define _meshtastic_TelemetrySensorType_ARRAYSIZE ((meshtastic_TelemetrySensorType)(meshtastic_TelemetrySensorType_DPS310+1))