Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 #include "SerialIMUDeviceOptions.hpp"
00009
00010
00011 namespace TELEKYB_NAMESPACE {
00012
00013 SerialIMUDeviceOptions::SerialIMUDeviceOptions()
00014 : OptionContainer("SerialIMUDevice")
00015 {
00016 tDeviceName = addOption< std::string >("tDeviceName",
00017 "Device Name to connect to!",
00018 "undef" , true, true);
00019
00020
00021
00022
00023
00024 tBaudRate = addOption< BaudRateBaseEnum<size_t>::Type >("tBaudRate",
00025 "Defines the BaudRate of the Serial Connetion", BaudRate::BAUD230400, false, true);
00026 tTermiosCFlags = addOption< int >("tTermiosCFlags",
00027 "Defines the Termios CFlags. Beware, this is hard to set from the command line!",
00028 CS8 | CLOCAL | CREAD , false, true);
00029 }
00030
00031 }