Skip to content
Snippets Groups Projects
Commit 0e7fa6e7 authored by Ruud Overeem's avatar Ruud Overeem
Browse files

Bug 1000: Added TBBcontroller to the registered controllers.

parent 51970f08
No related branches found
No related tags found
No related merge requests found
...@@ -513,8 +513,9 @@ int16 ControllerMenu::_chooseController() ...@@ -513,8 +513,9 @@ int16 ControllerMenu::_chooseController()
cout << " 7. DigitalBoardControl" << endl; cout << " 7. DigitalBoardControl" << endl;
cout << " 8. BeamControl" << endl; cout << " 8. BeamControl" << endl;
cout << " 9. CalibrationControl" << endl; cout << " 9. CalibrationControl" << endl;
// cout << "10. StationInfraControl" << endl; cout << "10. TBBControl" << endl;
cout << "11. TestController" << endl; // cout << "11. StationInfraControl" << endl;
cout << "12. TestController" << endl;
cout << endl; cout << endl;
cout << " 0. stop" << endl; cout << " 0. stop" << endl;
...@@ -523,7 +524,7 @@ int16 ControllerMenu::_chooseController() ...@@ -523,7 +524,7 @@ int16 ControllerMenu::_chooseController()
cout << endl; cout << endl;
cout << "Type number of your choice: "; cout << "Type number of your choice: ";
cin >> CntlrType; cin >> CntlrType;
if (CntlrType < 0 || CntlrType > 11 || (CntlrType > 3 && CntlrType < 6)) { if (CntlrType < 0 || CntlrType > 12 || (CntlrType > 3 && CntlrType < 6)) {
cout << endl << "Wrong number, please retry." << endl; cout << endl << "Wrong number, please retry." << endl;
CntlrType = -1; CntlrType = -1;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment