| 
									
										
										
										
											2017-04-27 20:24:53 +02:00
										 |  |  | // SPDX-License-Identifier: GPL-2.0
 | 
					
						
							| 
									
										
										
										
											2014-08-24 20:48:22 +02:00
										 |  |  | #ifndef GASPRESSURES_H
 | 
					
						
							|  |  |  | #define GASPRESSURES_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | extern "C" { | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * simple structure to track the beginning and end tank pressure as | 
					
						
							|  |  |  |  * well as the integral of depth over time spent while we have no | 
					
						
							|  |  |  |  * pressure reading from the tank */ | 
					
						
							|  |  |  | typedef struct pr_track_struct pr_track_t; | 
					
						
							|  |  |  | struct pr_track_struct { | 
					
						
							| 
									
										
										
										
											2016-03-10 07:40:15 -08:00
										 |  |  | 	int start; | 
					
						
							|  |  |  | 	int end; | 
					
						
							|  |  |  | 	int t_start; | 
					
						
							|  |  |  | 	int t_end; | 
					
						
							|  |  |  | 	int pressure_time; | 
					
						
							| 
									
										
										
										
											2014-08-24 20:48:22 +02:00
										 |  |  | 	pr_track_t *next; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct pr_interpolate_struct pr_interpolate_t; | 
					
						
							|  |  |  | struct pr_interpolate_struct { | 
					
						
							| 
									
										
										
										
											2016-03-10 07:40:15 -08:00
										 |  |  | 	int start; | 
					
						
							|  |  |  | 	int end; | 
					
						
							|  |  |  | 	int pressure_time; | 
					
						
							|  |  |  | 	int acc_pressure_time; | 
					
						
							| 
									
										
										
										
											2014-08-24 20:48:22 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-09 14:36:27 +01:00
										 |  |  | enum interpolation_strategy {SAC, TIME, CONSTANT}; | 
					
						
							| 
									
										
										
										
											2014-08-25 10:03:46 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-24 20:48:22 +02:00
										 |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #endif // GASPRESSURES_H
 |