Index: firmware/App/Drivers/PressureSensor.c =================================================================== diff -u -rc1e648a4cdc622919a3dcc7344b71e8c3fec61df -r234249ae228096a2351d478f784e754298da6628 --- firmware/App/Drivers/PressureSensor.c (.../PressureSensor.c) (revision c1e648a4cdc622919a3dcc7344b71e8c3fec61df) +++ firmware/App/Drivers/PressureSensor.c (.../PressureSensor.c) (revision 234249ae228096a2351d478f784e754298da6628) @@ -7,8 +7,8 @@ * * @file PressureSensor.c * -* @author (last) Dara Navaei -* @date (last) 19-Dec-2025 +* @author (last) Varshini Nagabooshanam +* @date (last) 04-Feb-2026 * * @author (original) Sean Nash * @date (original) 22-Aug-2024 @@ -232,18 +232,17 @@ // Select pressure sensor range based on test configuration if ( getTestConfigStatus( TEST_CONFIG_ENABLE_BETA_1_HW ) == TRUE ) { - // Beta 1 hardware: 30 PSI + // Beta 1 Hardware: 30 PSI minPsi = -30.0F; maxPsi = 30.0F; } else { - // Beta 1.9 hardware: 15 PSI + // Beta 1.9 Hardware: 15 PSI minPsi = -15.0F; maxPsi = 15.0F; } - // Convert raw sensor reading to PSI presPSI = ( ( (F32)rdg - PRES_SENSORS_ZERO_OFFSET ) * ( maxPsi - minPsi ) / PRES_SENSORS_DIVISOR ) + minPsi; return ( presPSI * PSI_TO_MMHG ); Index: firmware/App/Monitors/Pressures.c =================================================================== diff -u -rad7e95175b631c22d32a39df14e9d321277d4194 -r234249ae228096a2351d478f784e754298da6628 --- firmware/App/Monitors/Pressures.c (.../Pressures.c) (revision ad7e95175b631c22d32a39df14e9d321277d4194) +++ firmware/App/Monitors/Pressures.c (.../Pressures.c) (revision 234249ae228096a2351d478f784e754298da6628) @@ -8,7 +8,7 @@ * @file Pressures.c * * @author (last) Varshini Nagabooshanam -* @date (last) 11-Dec-2025 +* @date (last) 04-Feb-2026 * * @author (original) Sean Nash * @date (original) 24-Sep-2024 @@ -78,7 +78,7 @@ #define TMP_PRESSURE_LIMIT_MAX_MMHG ( 500.0F ) ///< Maximum transmembrane pressure limit (in mmHg) #define TMP_PRESSURE_LIMIT_MIN_MMHG ( -500.0F ) ///< Minimum transmembrane pressure limit (in mmHg) -#define TMP_PRESSURE_HIGH_ABSOLUTE_MMHG ( 500.0F ) ///< Transmembrane pressure high absolute (in mmHg) +#define TMP_PRESSURE_HIGH_ABSOLUTE_MMHG ( 500.0F ) ///< Transmembrane pressure high absolute (in mmHg). #define TMP_ALARM_PERSISTENCE ( ( 1 * MS_PER_SECOND ) / TASK_GENERAL_INTERVAL ) ///< Alarm persistence period for transmembrane pressure alarms #define MIN_TIME_BETWEEN_AIR_TRAP_FILL_EXEMPTIONS_MS ( 1200 ) ///< To monitor low Venous pressure in the defined interval in a case where continuous air fill event happens followed by exemption period to stabilize the pressure Index: firmware/App/TDCommon.h =================================================================== diff -u -r3755580ca38aa18e56455287504fc74cccc4730b -r234249ae228096a2351d478f784e754298da6628 --- firmware/App/TDCommon.h (.../TDCommon.h) (revision 3755580ca38aa18e56455287504fc74cccc4730b) +++ firmware/App/TDCommon.h (.../TDCommon.h) (revision 234249ae228096a2351d478f784e754298da6628) @@ -7,8 +7,8 @@ * * @file TDCommon.h * -* @author (last) Dara Navaei -* @date (last) 19-Dec-2025 +* @author (last) Varshini Nagabooshanam +* @date (last) 04-Feb-2026 * * @author (original) Sean Nash * @date (original) 01-Aug-2024 @@ -25,6 +25,7 @@ #define TD_VERSION_MAJOR 0 #define TD_VERSION_MINOR 0 #define TD_VERSION_MICRO 0 + #define TD_VERSION_BUILD 34 // ********** development build switches ********** @@ -38,7 +39,7 @@ // #define TEST_PROCESS_TASKS_WO_UI 1 // Allow task processing even when UI not connected #define TEST_UI_ONLY 1 // Alpha test with TD and UI only - no DD // #define TEST_USE_OFF_AS_STOP_BUTTON 1 // Alpha test re-purposing off button as a stop button - #define TEST_NO_PRESSURE_CHECKS 1 // Alpha test with no pressure sensor checks + #define TEST_NO_PRESSURE_CHECKS 1 // Alpha test with no pressure sensor checks // #define TEST_NO_STOP_CONSUME_CHECK 1 // Alpha test with no check for stop button timeout // #define ASN_DEMO 1