Add files via upload

master
roncarr880 2020-08-19 14:34:12 -04:00 zatwierdzone przez GitHub
rodzic 6169d9bd75
commit fbcefa3e72
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 8 dodań i 1 usunięć

Wyświetl plik

@ -1219,6 +1219,7 @@ int cnt;
loops = last_time_error/100; // loop 1,2,3,4,5 times for error <100, <200, <300, <400, <500
if( loops < 0 ) loops = -loops;
++loops;
if( err < CLK_UPDATE_THRESHOLD2 ) ++loops; // to process both the single and multi time adjustments
if( last_error_count < CLK_UPDATE_THRESHOLD2 ) ++last_error_count; // relax the test threshold
@ -1227,7 +1228,7 @@ int cnt;
t = 0; // signal better than the relaxing threshold ?
if( err < last_error_count ){
if( err < last_error_count ){ // looped time adjustment
t = ( tm < 500 ) ? -1 : 1 ;
if( tm == 0 ) t = 0;
@ -1238,6 +1239,12 @@ int cnt;
last_error_count = err; // new threshold
val_print = '*';
}
else if( err < CLK_UPDATE_THRESHOLD2 ){ // single time adjustment when locked out by last_error_count
t = ( tm < 500 ) ? -1 : 1 ;
if( tm == 0 ) t = 0;
if( t == 1 ) val_print = '>';
if( t == -1 ) val_print = '<';
}
if( t == 0 ){ // use old data for the correction amount
if( last_time_error > 0 ) last_time_error--, t = -1;