Skip to content
Snippets Groups Projects
Commit 8122cbe1 authored by Alain BUTEAU's avatar Alain BUTEAU
Browse files

TANGODEVIC-1830

parent 20473f57
No related branches found
No related tags found
No related merge requests found
.project 0 → 100644
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>NMR20</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
</buildSpec>
<natures>
</natures>
</projectDescription>
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
</parent> </parent>
<groupId>fr.soleil.device</groupId> <groupId>fr.soleil.device</groupId>
<artifactId>NMR20-${aol}-${mode}</artifactId> <artifactId>NMR20-${aol}-${mode}</artifactId>
<version>1.0.9</version> <version>1.0.10</version>
<packaging>nar</packaging> <packaging>nar</packaging>
<name>NMR20</name> <name>NMR20</name>
<description>NMR20 device</description> <description>NMR20 device</description>
......
...@@ -404,8 +404,18 @@ void NMR20::read_automaticMeasurementMode(Tango::Attribute &attr) ...@@ -404,8 +404,18 @@ void NMR20::read_automaticMeasurementMode(Tango::Attribute &attr)
} }
else if(measurement_mode == "A") else if(measurement_mode == "A")
{ {
*attr_automaticMeasurementMode_read=false; *attr_automaticMeasurementMode_read=true;
s += "AUTOMATIC mode\n"; s += "AUTOMATIC mode\n";
}
else if(measurement_mode == "G")
{
*attr_automaticMeasurementMode_read=true;
s += "GRADIENT mode\n";
}
else if(measurement_mode == "E")
{
*attr_automaticMeasurementMode_read=true;
s += "DYNAMIC mode\n";
} }
else else
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment