changeset 472:360f540da5b2

Merge with Bugfix 463
author JeanDo
date Sun, 09 Oct 2011 17:36:07 +0200
parents 42acd9316f7a (current diff) 5546da23afab (diff)
children 0ff08e0e5f70
files
diffstat 2 files changed, 13 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/code_part1/OSTC_code_c_part2/p2_deco.c	Thu Oct 06 23:34:47 2011 +0200
+++ b/code_part1/OSTC_code_c_part2/p2_deco.c	Sun Oct 09 17:36:07 2011 +0200
@@ -124,7 +124,7 @@
 static void calc_ascenttime(void);
 static void update_startvalues(void);
 static void clear_deco_table(void);
-static void update_deco_table(void);
+static unsigned char update_deco_table(void);
 
 static void backup_sim_pres_tissue(void);
 static void restore_sim_pres_tissue(void);
@@ -1478,7 +1478,8 @@
                 //---- We hit a stop at temp_depth_limit ---------------------
                 temp_deco = temp_depth_limit * METER_TO_BAR // Convert to relative bar,
 	                      + pres_surface;                   // To absolute.
-                update_deco_table();                        // Adds a one minute stops.
+                if( !update_deco_table() )                  // Adds a one minute stops.
+                    goto Surface;                           // Deco table full: abort...
             }
             else
             {
@@ -1489,12 +1490,12 @@
                 if( temp_deco <= pres_surface )
                 {
 Surface:
-                    if( char_O_deco_status == 1 )  // Don't in @+5min variant.
+                    if( char_O_deco_status == 1 )   // Don't in @+5min variant.
                         copy_deco_table();      
 
                     calc_ascenttime();
-                    char_O_deco_status = 0;     // calc nullzeit next time.
-                    char_O_deco_last_stop = 0;  // Surface reached (to animate menu)
+                    char_O_deco_status = 0;         // calc nullzeit next time.
+                    char_O_deco_last_stop = 0;      // Surface reached (to animate menu)
     		        return;
                 }
             }
@@ -1503,7 +1504,8 @@
         {
             // Note: if loop==0, temp_depth_limit might not be already set here.
             temp_depth_limit = (int)(0.5 + (temp_deco - pres_surface) * BAR_TO_METER);
-            update_deco_table();    // Just pass one minute.
+            if( !update_deco_table() )  // Just pass one minute.
+                goto Surface;           // Deco table full: abort...
         }
 
         //---- Then update tissue --------------------------------------------
@@ -1897,7 +1899,7 @@
 //      internal_deco_depth[] : depth (in metres) of each stops.
 //      internal_deco_time [] : time (in minutes) of each stops.
 //
-static void update_deco_table()
+static unsigned char update_deco_table()
 {
     overlay unsigned char x;
     assert( temp_depth_limit < 128 );   // Can't be negativ (overflown).
@@ -1914,7 +1916,7 @@
 	        if( internal_deco_time[x] < 255 )
             {
                 internal_deco_time[x]++;
-                return;
+                return 1;
             }
             // But store extra in the next stop...
         }
@@ -1926,13 +1928,14 @@
                 internal_deco_depth[x] |= 0x80;
 
             internal_deco_time[x]  = 1;
-            return;
+            return 1;
         }
     }
 
     // Can't store stops at more than 96m.
     // Or stops at less that 3m too.
     // Just do nothing with that...
+    return 0;
 }
 
 //////////////////////////////////////////////////////////////////////////////
@@ -2325,7 +2328,7 @@
     overlay float time_factor = 1.0f;    
     RESET_C_STACK
 
-    assert( 0.0 <= CNS_fraction && CNS_fraction <= 2.5 );
+    assert( 0.0 <= CNS_fraction && CNS_fraction <= 2.56 );
     assert( char_I_actual_ppO2 > 15 );
 
     if( char_I_step_is_1min == 1 )
Binary file code_part1/OSTC_code_c_part2/p2_deco.o has changed