Index: PressureCommon.c =================================================================== diff -u -red81d83be39a26fed0b40738f17179cffbb6e844 -rb3bfdd5c8aee3e2d93cfdf9ca6151dceaed9047d --- PressureCommon.c (.../PressureCommon.c) (revision ed81d83be39a26fed0b40738f17179cffbb6e844) +++ PressureCommon.c (.../PressureCommon.c) (revision b3bfdd5c8aee3e2d93cfdf9ca6151dceaed9047d) @@ -1,29 +1,29 @@ /************************************************************************** * -* Copyright (c) 2024-2024 Diality Inc. - All Rights Reserved. +* Copyright (c) 2024-2025 Diality Inc. - All Rights Reserved. * * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * * @file PressureCommon.c * -* @author (last) Vinayakam Mani -* @date (last) 13-Sep-2024 +* @author (last) Sean Nash +* @date (last) 12-Sep-2025 * -* @author (original) Sean -* @date (original) 22-Aug-2024 +* @author (original) Sean Nash +* @date (original) 26-Aug-2024 * ***************************************************************************/ -#include "PressureCommon.h" - +#include "PressureCommon.h" + /** * @addtogroup PressureCommon * @{ */ -// ********** private definitions ********** - +// ********** private definitions ********** + #define PRESSURE_FS ( 14746.0F ) ///< Pressure sensor full scale output. #define PRESSURE_ZERO ( 1638.0F ) ///< Pressure sensor zero value. #define PRESSURE_FS_MINUS_ZERO ( PRESSURE_FS - PRESSURE_ZERO ) ///< Pressure sensor fullscale and zero difference. @@ -32,12 +32,10 @@ #define PRESSURE_TEMP_MULTIPLIER ( 200.0F ) ///< Pressure sensor multiplier #define PRESSURE_TEMP_OFFSET ( 50.0F ) ///< Pressure sensor temperature offset. -// ********** private data ********** - - +// ********** private data ********** + // ********** private function prototypes ********** - /*********************************************************************//** * @brief * The convertPressureReading function converts a raw pressure ADC @@ -74,5 +72,5 @@ return degC; } - + /**@}*/