Index: firmware/App/Drivers/BubbleDetector.h =================================================================== diff -u -r494b19c85bdea2b8fc273c648b4f1955f9d07dc3 -r961784c895cb8f551a2623cd02dcbfe42d04b7c2 --- firmware/App/Drivers/BubbleDetector.h (.../BubbleDetector.h) (revision 494b19c85bdea2b8fc273c648b4f1955f9d07dc3) +++ firmware/App/Drivers/BubbleDetector.h (.../BubbleDetector.h) (revision 961784c895cb8f551a2623cd02dcbfe42d04b7c2) @@ -14,12 +14,12 @@ * @date (original) 22-Aug-2024 * ***************************************************************************/ - -#ifndef __BUBBLE_DETECTOR_H__ -#define __BUBBLE_DETECTOR_H__ - + +#ifndef __BUBBLE_DETECTOR_H__ +#define __BUBBLE_DETECTOR_H__ + #include "TDCommon.h" - + /** * @defgroup BubbleDetector BubbleDetector * @brief The Bubble Detector unit provides low-level functions for interfacing @@ -29,12 +29,12 @@ * @{ */ -// ********** public definitions ********** - +// ********** public definitions ********** + /// Enumeration of bubble detector sensors. typedef enum Bubble_Detectors { - BUBBLE_DETECTOR_ADV = 0, ///< ADV - Venous bubble detector. + H18_BBLD = 0, ///< H18: Venous bubble detector. NUM_OF_BUBBLE_DETECTORS ///< Number of used internal ADC channels. } BUBBLE_DETECTOR_T; @@ -46,14 +46,14 @@ NUM_OF_BUBBLE_DETECTION_STATES ///< Number of bubble detection states. } BUBBLE_STATE_T; -// ********** public function prototypes ********** - -void initBubbleDetector( void ); +// ********** public function prototypes ********** + +void initBubbleDetector( void ); void readBubbleDetectors( void ); BUBBLE_STATE_T getBubbleDetectedState( BUBBLE_DETECTOR_T sensor ); BOOL testBubbleDetectOverride( MESSAGE_T *message ); - + /**@}*/ -#endif +#endif