Skip to content
Snippets Groups Projects
Commit 84dd877b authored by Xavier ELATTAOUI's avatar Xavier ELATTAOUI
Browse files

pb with micro unit character corrupted.

parent e3be7a75
Branches jupyterlab
Tags
No related merge requests found
......@@ -8,7 +8,7 @@
</parent>
<groupId>fr.soleil.device</groupId>
<artifactId>LoCuM_4-${aol}-${mode}</artifactId>
<version>2.1.3</version>
<version>2.1.4</version>
<packaging>nar</packaging>
<name>LoCuM_4</name>
<description>LoCuM_4 device</description>
......
static const char *RcsId = "$Header: /users/chaize/newsvn/cvsroot/Instrumentation/LoCuM_4/src/LoCuM_4.cpp,v 1.20 2010-03-26 09:31:17 vince_soleil Exp $";
static const char *RcsId = "$Header: /users/chaize/newsvn/cvsroot/Instrumentation/LoCuM_4/src/LoCuM_4.cpp,v 1.21 2010-04-29 07:19:56 xavela Exp $";
//+=============================================================================
//
// file : LoCuM_4.cpp
......@@ -11,11 +11,14 @@ static const char *RcsId = "$Header: /users/chaize/newsvn/cvsroot/Instrumentatio
//
// project : TANGO Device Server
//
// $Author: vince_soleil $
// $Author: xavela $
//
// $Revision: 1.20 $
// $Revision: 1.21 $
//
// $Log: not supported by cvs2svn $
// Revision 1.20 2010/03/26 09:31:17 vince_soleil
// "Migration_Tango7_Part2"
//
// Revision 1.19 2008/10/10 09:40:42 buteau
// tentative de correction pour crash DSErver
//
......@@ -660,7 +663,7 @@ Tango::DevString LoCuM_4::send_locum4_command(Tango::DevString argin)
std::string range;
int index_underscore,index_comma;
// config string like "S1_100A,S2_Plus,HV_OFF,Ext_OFF,Bias+_ON,Auto_OFF,"
// config string like "S1_100µA,S2_Plus,HV_OFF,Ext_OFF,Bias+_ON,Auto_OFF,"
index_underscore = config.find_first_of("_",0);
......@@ -693,13 +696,13 @@ Tango::DevString LoCuM_4::send_locum4_command(Tango::DevString argin)
if(range == "1mA")
return 1000;
if(range == "100A")
if(range == "100µA")
return 100;
if(range == "10A")
if(range == "10µA")
return 10;
if(range == "1A")
if(range == "1µA")
return 1;
if(range == "100nA")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment