You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <param name="output_to_file">Output log entries to a file in the current directory. Default: enabled.</param>
1321
+
/// <param name="output_to_stderr">Output log entries to the stderr pipe (console). Default: disabled.</param>
1322
+
/// <param name="output_to_queue">Store log entries in memory. They can be retrieved via the <see cref="Fgt_get_next_log"/> function. Default: disabled.</param>
* @Description Get sensor's current calibration table. Not supported by IPS.
458
+
* @Description Get sensor's current calibration table. Only applicable to Flow Unit sensors.
458
459
* @param sensorIndex Index of sensor channel or unique ID
459
460
* @out *calibration fgt_SENSOR_CALIBRATION
460
461
* @return fgt_ERROR_CODE
@@ -465,7 +466,7 @@ typedef struct
465
466
* @Description Apply a custom scale factor on sensor read value. This function is useful in order to adapt read sensor value to physical measurement.
466
467
* For example if a flow-unit is used with a special oil and it's calibration table is set to H2O, read flowrate is not correct.
467
468
* Scale factor is applied using following formula: scaled_value = a*sensor_value + b*sensor_value^2 + c*sensor_value^3
468
-
* Note that this scale is also used for the regulation. Not supported by IPS.
469
+
* Note that this scale is also used for the regulation. Only applicable to Flow Unit sensors.
469
470
* @param sensorIndex Index of sensor channel or unique ID
470
471
* @param float a proportional multiplier value
471
472
* @param float b square multiplier value
@@ -480,7 +481,7 @@ typedef struct
480
481
* For example if a flow-unit is used with a special oil and it's calibration table is set to H2O, read flowrate is not correct.
481
482
* Scale factor is applied using following formula: scaled_value = a*sensor_value + b*sensor_value^2 + c*sensor_value^3
482
483
* When applying a custom scale factor, sensor range may increase very rapidly, SMax parameter is meant to limit this maximal value.
483
-
* This function purpose is to be used with the regulation in order to avoid too high maximum range on the sensor. Not supported by IPS.
484
+
* This function purpose is to be used with the regulation in order to avoid too high maximum range on the sensor. Only applicable to Flow Unit sensors.
484
485
* @param sensorIndex Index of sensor channel or unique ID
485
486
* @param float a proportional multiplier value
486
487
* @param float b square multiplier value
@@ -505,8 +506,9 @@ typedef struct
505
506
* Custom sensors, outside Fluigent ones, can be used such as different flow-units, pressure, level ...
506
507
* However we do not guarantee full compatibility with all sensors. Regulation quality is linked to sensor precision and your set-up.
507
508
* In order to use this function, custom used sensor maximum range and measured values has to be updated at least once per second.
508
-
* Directly setting pressure on same pressureIndex will stop regulation. Not supported by IPS.
509
-
* This function must be called at 1Hz minimum or the regulation will stop.
509
+
* Directly setting pressure on same pressureIndex will stop regulation.
510
+
* This function must be called at least once per second to update the sensor measurement,
511
+
* or the regulation will stop.
510
512
* @param measure custom sensor measured value, no unit is required
511
513
* @param setpoint custom sensor regulation goal value, no unit is required
512
514
* @param pressureIndex Index of pressure channel or unique ID
* @Description Get sensor minimum and maximum range. Returned values takes into account set unit, default value is 'µl/min' in case of flow-units and 'mbar' for pressure sensors.
530
+
* @Description Get sensor minimum and maximum range. Returned values takes into account set unit, default value is 'µl/min' in case of Flow Units and 'mbar' for pressure sensors.
529
531
* @param sensorIndex Index of sensor channel or unique ID
530
532
* @out Smin minimum measured sensor value
531
533
* @out Smax maximum measured sensor value
@@ -557,7 +559,7 @@ typedef struct
557
559
558
560
/**
559
561
* @Description Set on a running regulation pressure response time. Minimal value is 2 for FlowEZ, 6 for MFCS controllers.
560
-
* This function is useful if a more smooth response is wanted. Not supported by IPS.
562
+
* This function is useful if a more smooth response is wanted.
561
563
* @param sensorIndex Index of sensor channel or unique ID
562
564
* @param responseTime pressure response time in seconds
* @Description Sets how the SDK outputs the log entries.
766
+
* @param output_to_file Output log entries to a file in the current directory. 1 to enable, 0 to disable. Default: enabled.
767
+
* @param output_to_stderr Output log entries to the stderr pipe (console). 1 to enable, 0 to disable. Default: disabled.
768
+
* @param output_to_queue Store log entries in memory. They can be retrieved via the fgt_get_next_log function. 1 to enable, 0 to disable. Default: disabled.
* @Description Sets how the SDK outputs the log entries.
1247
+
* @param output_to_file Output log entries to a file in the current directory. 1 to enable, 0 to disable. Default: enabled.
1248
+
* @param output_to_stderr Output log entries to the stderr pipe (console). 1 to enable, 0 to disable. Default: disabled.
1249
+
* @param output_to_queue Store log entries in memory. They can be retrieved via the fgt_get_next_log function. 1 to enable, 0 to disable. Default: disabled.
0 commit comments