aboutsummaryrefslogtreecommitdiff
path: root/src/optmanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/optmanager.cpp')
-rw-r--r--src/optmanager.cpp12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/optmanager.cpp b/src/optmanager.cpp
index a8cc039..9ea843f 100644
--- a/src/optmanager.cpp
+++ b/src/optmanager.cpp
@@ -184,8 +184,16 @@ OptManager::sendGetSerial( std::string port_name)
void
OptManager::sendSetSerial(uint32_t i_serialNumber, string port)
{
+ uint32_t ser_nb;
Ultimate prop(port);
- prop.setSerialUlt( i_serialNumber);
+ ser_nb = prop.setSerialUlt( i_serialNumber);
+
+ if (VERBOSE_AERO)
+ {
+ cout << "Serial number 0x" << hex << ser_nb
+ << " sent" << endl;
+ }
+
}
/*
@@ -394,13 +402,11 @@ OptManager::isValidSerialNumber(string strNb)
{
std::stringstream ss( strNb);
ss >> dec >> i_ser_nb;
- cout << i_ser_nb << endl;
}
else if(isHexNotation( strNb))
{
std::stringstream ss( strNb.substr(2));
ss >> hex >> i_ser_nb;
- cout << i_ser_nb << endl;
}
else
{