More program extensions to handle TORINO50 define.

This commit is contained in:
Milan Hanajik 2015-03-09 17:30:38 +01:00
parent 82d5e7df05
commit 6305c42f8b
2 changed files with 3 additions and 5 deletions

View File

@ -82,7 +82,7 @@ namespace TBF.BenchControl.Elde
public float[] EtCalib = new float[6] { 1, 1, 1, 1, 1, 1 };
#elif MUNICH
public float[] EtCalib = new float[5] { 1, 1, 1, 1, 1 };
#elif FUZHOU150 || FUZHOU300 || PT200IL
#elif FUZHOU150 || FUZHOU300 || PT200IL || TORINO50
public float[] EtCalib = new float[6] { 1, 1, 1, 1, 1, 1 };
#endif
public uint[] DiverterEdge = new uint[2] { 50, 50 };

View File

@ -31,11 +31,9 @@ namespace TBF
public static DatabaseSettings CurrentBench;
const string SQLiteDbFName = "SQLite.db";
#if (DN100 || MUNICH)
#if DN100 || MUNICH
public const int WMsCount = 3;
#elif FUZHOU300
public const int WMsCount = 6;
#else // if FUZHOU150, PT200IL, TORINO50
#else // FUZHOU300, FUZHOU150, PT200IL, TORINO50
public const int WMsCount = 6;
#endif