Skip to content
Snippets Groups Projects
Commit a7fd4558 authored by Alessio Igor Bogani's avatar Alessio Igor Bogani
Browse files

Add model X3602-69011

parent 2bf8131f
No related branches found
No related tags found
No related merge requests found
...@@ -265,11 +265,14 @@ void IPCMini::init_device() ...@@ -265,11 +265,14 @@ void IPCMini::init_device()
} }
/* Identify model: /* Identify model:
* X3602-64010 con 1 canale * X3602-64010 con 1 canale NEGATIVO
* X3602-64011 con 1 canale POSITIVO
* X3602-69011 refurbished version for 64011
*/ */
string model; string model;
read_window(319, model); read_window(319, model);
if (model != "X3602-64010" && model != "X3602-64011") { if (model != "X3602-64010" && model != "X3602-64011"
&& model != "X3602-69011" ) {
Tango::Except::throw_exception( "", Tango::Except::throw_exception( "",
"Unknown model: " + model, "Unknown model: " + model,
"IPCMini::init_device()"); "IPCMini::init_device()");
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment