[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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 4 deletions

@ -1 +1 @@
Subproject commit 1cddedce83fe056dff5441a7cd468a6f4826b51a
Subproject commit c261bd71aaf416f3bcef5dbc774d06b797fc58c6

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))