9 #ifndef tty_usbDevice_hpp 10 #define tty_usbDevice_hpp 13 #include "../../libMagAOX/tty/ttyIOUtils.hpp" 14 #include "../../libMagAOX/tty/ttyUSB.hpp" 45 int loadConfig( mx::appConfigurator & config );
56 config.add(
"usb.idVendor",
"",
"idVendor", mx::argType::Required,
"usb",
"idVendor",
false,
"string",
"USB vendor id, 4 digits");
57 config.add(
"usb.idProduct",
"",
"idProduct", mx::argType::Required,
"usb",
"idProduct",
false,
"string",
"USB product id, 4 digits");
58 config.add(
"usb.serial",
"",
"serial", mx::argType::Required,
"usb",
"serial",
false,
"string",
"USB serial number");
59 config.add(
"usb.baud",
"",
"baud", mx::argType::Required,
"usb",
"baud",
false,
"real",
"USB tty baud rate (i.e. 9600)");
73 config(baud,
"usb.baud");
74 switch((
int)(baud*10))
143 #endif //tty_usbDevice_hpp int connect()
Connect to the device.
int setupConfig(mx::appConfigurator &config)
Setup an application configurator for the USB section.
A USB device as a TTY device.
int getDeviceName()
Get the device name from udev using the vendor, product, and serial number.
int loadConfig(mx::appConfigurator &config)
Load the USB section from an application configurator.
std::string m_deviceName
The device path name, e.g. /dev/ttyUSB0.
std::string m_serial
The serial number.
int ttyOpenRaw(int &fileDescrip, std::string &deviceName, speed_t speed)
Open a file as a raw-mode tty device.
speed_t m_speed
The baud rate specification.
int m_fileDescrip
The file descriptor.
std::string m_idProduct
The product id 4-digit code.
int ttyUSBDevName(std::string &devName, const std::string &vendor, const std::string &product, const std::string &serial)
Get the ttyUSB device name.
std::string m_idVendor
The vendor id 4-digit code.
#define TTY_E_BADBAUDRATE