@@ -497,6 +497,8 @@ shearwater_predator_parser_cache (shearwater_predator_parser_t *parser)
497
497
498
498
unsigned int offset = headersize ;
499
499
unsigned int length = size - footersize ;
500
+ unsigned int stack_time_total_s = 0 ;
501
+ unsigned int stack_time_remaining_s ;
500
502
while (offset + parser -> samplesize <= length ) {
501
503
// Ignore empty samples.
502
504
if (array_isequal (data + offset , parser -> samplesize , 0x00 )) {
@@ -680,6 +682,14 @@ shearwater_predator_parser_cache (shearwater_predator_parser_t *parser)
680
682
tank [1 ].pressure_reserve = array_uint16_be (data + offset + 17 );
681
683
}
682
684
} else if (type == LOG_RECORD_OPENING_6 ) {
685
+ if (logversion >= 11 ) {
686
+ stack_time_total_s = array_uint16_be (data + offset + 1 );
687
+ if (stack_time_total_s > 0 ) {
688
+ dc_field_add_string_fmt (& parser -> cache , "Configured stack time [hh:mm:ss]" , "%d:%02d:%02d" , stack_time_total_s / 3600 , (stack_time_total_s / 60 ) % 60 , stack_time_total_s % 60 );
689
+ stack_time_remaining_s = array_uint16_be (data + offset + 3 );
690
+ dc_field_add_string_fmt (& parser -> cache , "Remaining stack time at start [hh:mm:ss]" , "%d:%02d:%02d" , stack_time_remaining_s / 3600 , (stack_time_remaining_s / 60 ) % 60 , stack_time_remaining_s % 60 );
691
+ }
692
+ }
683
693
if (logversion >= 13 ) {
684
694
tank [0 ].enabled = data [offset + 19 ];
685
695
memcpy (tank [0 ].name , data + offset + 20 , sizeof (tank [0 ].name ));
@@ -704,6 +714,14 @@ shearwater_predator_parser_cache (shearwater_predator_parser_t *parser)
704
714
}
705
715
}
706
716
} else if (type >= LOG_RECORD_CLOSING_0 && type <= LOG_RECORD_CLOSING_7 ) {
717
+ if (type == LOG_RECORD_CLOSING_6 ) {
718
+ if (logversion >= 11 ) {
719
+ if (stack_time_total_s > 0 ) {
720
+ stack_time_remaining_s = array_uint16_be (data + offset + 3 );
721
+ dc_field_add_string_fmt (& parser -> cache , "Remaining stack time at end [hh:mm]" , "%d:%02d:%02d" , stack_time_remaining_s / 3600 , (stack_time_remaining_s / 60 ) % 60 , stack_time_remaining_s % 60 );
722
+ }
723
+ }
724
+ }
707
725
// Closing record
708
726
parser -> closing [type - LOG_RECORD_CLOSING_0 ] = offset ;
709
727
} else if (type == LOG_RECORD_FINAL ) {
0 commit comments