MagAO-X
Operations Applications Utilities Source
usbDevice.hpp
Go to the documentation of this file.
1 /** \file usbDevice.hpp
2  * \author Jared R. Males
3  * \brief Manage a USB TTY device in the MagAOXApp context
4  *
5  * \ingroup tty_files
6  *
7  */
8 
9 #ifndef tty_usbDevice_hpp
10 #define tty_usbDevice_hpp
11 
12 
13 #include "../../libMagAOX/tty/ttyIOUtils.hpp"
14 #include "../../libMagAOX/tty/ttyUSB.hpp"
15 
16 namespace MagAOX
17 {
18 namespace tty
19 {
20 
21 /// A USB device as a TTY device.
22 /**
23  * \ingroup tty
24  */
25 struct usbDevice
26 {
27  std::string m_idVendor; ///< The vendor id 4-digit code
28  std::string m_idProduct; ///< The product id 4-digit code
29  std::string m_serial; ///< The serial number
30 
31  speed_t m_speed {0}; ///< The baud rate specification.
32 
33  std::string m_deviceName; ///< The device path name, e.g. /dev/ttyUSB0
34 
35  int m_fileDescrip {0}; ///< The file descriptor
36 
37  ///Setup an application configurator for the USB section
38  int setupConfig( mx::appConfigurator & config /**< [in] an application configuration to setup */);
39 
40  ///Load the USB section from an application configurator
41  /**
42  * If config does not contain a baud rate, m_speed is unchanged. If m_speed is 0 at the end of this
43  * method, an error is returned. Set m_speed prior to calling to avoid this error.
44  */
45  int loadConfig( mx::appConfigurator & config /**< [in] an application configuration from which to load values */);
46 
47  ///Get the device name from udev using the vendor, product, and serial number.
48  int getDeviceName();
49 
50  ///Connect to the device.
51  int connect();
52 };
53 
54 int usbDevice::setupConfig( mx::appConfigurator & config )
55 {
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)");
60 
61  return 0;
62 }
63 
64 int usbDevice::loadConfig( mx::appConfigurator & config )
65 {
66  config(m_idVendor, "usb.idVendor");
67  config(m_idProduct, "usb.idProduct");
68  config(m_serial, "usb.serial");
69 
70  //We read the config as a float to allow 134.5
71  //Then multiply by 10 for the switch statement.
72  float baud = 0;
73  config(baud, "usb.baud");
74  switch((int)(baud*10))
75  {
76  case 0:
77  break; //Don't change default.
78  case 500:
79  m_speed = B50;
80  break;
81  case 750:
82  m_speed = B75;
83  break;
84  case 1100:
85  m_speed = B110;
86  break;
87  case 1345:
88  m_speed = B134;
89  break;
90  case 1500:
91  m_speed = B150;
92  break;
93  case 2000:
94  m_speed = B200;
95  break;
96  case 3000:
97  m_speed = B300;
98  break;
99  case 6000:
100  m_speed = B600;
101  break;
102  case 18000:
103  m_speed = B1800;
104  break;
105  case 24000:
106  m_speed = B2400;
107  break;
108  case 48000:
109  m_speed = B4800;
110  break;
111  case 96000:
112  m_speed = B9600;
113  break;
114  case 192000:
115  m_speed = B19200;
116  break;
117  case 384000:
118  m_speed = B38400;
119  break;
120  default:
121  m_speed = 0;
122  break;
123  }
124 
125  if(m_speed == 0) return TTY_E_BADBAUDRATE;
126 
127  return getDeviceName();
128 }
129 
131 {
133 }
134 
136 {
138 }
139 
140 } //namespace tty
141 } //namespace MagAOX
142 
143 #endif //tty_usbDevice_hpp
int connect()
Connect to the device.
Definition: usbDevice.hpp:135
int setupConfig(mx::appConfigurator &config)
Setup an application configurator for the USB section.
Definition: usbDevice.hpp:54
A USB device as a TTY device.
Definition: usbDevice.hpp:25
int getDeviceName()
Get the device name from udev using the vendor, product, and serial number.
Definition: usbDevice.hpp:130
int loadConfig(mx::appConfigurator &config)
Load the USB section from an application configurator.
Definition: usbDevice.hpp:64
std::string m_deviceName
The device path name, e.g. /dev/ttyUSB0.
Definition: usbDevice.hpp:33
std::string m_serial
The serial number.
Definition: usbDevice.hpp:29
int ttyOpenRaw(int &fileDescrip, std::string &deviceName, speed_t speed)
Open a file as a raw-mode tty device.
Definition: ttyIOUtils.hpp:101
speed_t m_speed
The baud rate specification.
Definition: usbDevice.hpp:31
int m_fileDescrip
The file descriptor.
Definition: usbDevice.hpp:35
std::string m_idProduct
The product id 4-digit code.
Definition: usbDevice.hpp:28
int ttyUSBDevName(std::string &devName, const std::string &vendor, const std::string &product, const std::string &serial)
Get the ttyUSB device name.
Definition: ttyUSB.hpp:36
std::string m_idVendor
The vendor id 4-digit code.
Definition: usbDevice.hpp:27
#define TTY_E_BADBAUDRATE
Definition: ttyErrors.hpp:29