Fix comportamento default ping a false x SONATEST FTP

This commit is contained in:
Samuele E. Locatelli
2024-10-14 10:12:44 +02:00
parent a47a43a010
commit f096dfd745
2 changed files with 3 additions and 4 deletions
-1
View File
@@ -44,7 +44,6 @@ namespace IOB_WIN_NEXT.Iob
/// <param name="adpConf"></param>
public Generic(AdapterForm caller, IobConfiguration IOBConf)
{
lgInfo("Inizio call Iob Generic (base class)");
if (IOBConf != null)
{
// init oggetto redis...
+3 -3
View File
@@ -368,14 +368,14 @@ namespace IOB_WIN_NEXT.IobNet
{
//B_input = 1;
B_input = 3;
// aggiungo NON emergenza...
B_input += (1 << 7);
}
else
{
B_input = 0;
}
// aggiungo NON emergenza...
B_input += (1 << 7);
#if false
// annullo lettura bit signal IN pre/post x evitare invio automatico...
@@ -837,7 +837,7 @@ namespace IOB_WIN_NEXT.IobNet
/// <returns></returns>
private bool pingStatusOk()
{
bool answ = true;
bool answ = false;
int numVal = PingQueue.Count;
if (numVal > maxQueuePing / 2)
{