- Fixed conflicts in ascon.c
- Supressed superfluous message from fmess - Expanded multicounter to deal with threshold commands nicely - Fixed an an issue with an uninitialized dummy connection in nserver - Many changes to simidex to make it work in a more reliable way. - Added hdbfactory path alias targetpath - Extended frame to deal with sinqhttp HM
This commit is contained in:
@ -85,14 +85,15 @@ static int calculateNBSettings(pSingleDiff self,
|
||||
if (status != 1) {
|
||||
return 0;
|
||||
}
|
||||
if(om > 180.){
|
||||
om -= 360;
|
||||
} else if (om < -180.){
|
||||
om += 360.;
|
||||
}
|
||||
if (checkNormalBeam(om, &gamma, nu, settings, self)) {
|
||||
return 1;
|
||||
} else {
|
||||
if (checkNormalBeam(om + 360., &gamma, nu, settings, self)) {
|
||||
return 1;
|
||||
} else {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user