Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 #ifndef ROS_EMBEDDED_LINUX_HARDWARE_H_
00036 #define ROS_EMBEDDED_LINUX_HARDWARE_H_
00037
00038 #include <iostream>
00039
00040 #ifdef BUILD_LIBROSSERIALEMBEDDEDLINUX
00041 extern "C" int elCommInit(char *portName, int baud);
00042 extern "C" int elCommRead(int fd);
00043 extern "C" elCommWrite(int fd, uint8_t* data, int length);
00044 #endif
00045
00046 #ifdef __linux__
00047 #include <time.h>
00048 #endif
00049
00050
00051 #ifdef __MACH__
00052 #include <mach/mach.h>
00053 #include <mach/mach_time.h>
00054 static mach_timebase_info_data_t sTimebaseInfo;
00055 #endif
00056
00057 #define DEFAULT_PORT "/dev/ttyAM1"
00058
00059 class EmbeddedLinuxHardware
00060 {
00061 public:
00062 EmbeddedLinuxHardware(const char *pn, long baud = 57600)
00063 {
00064 strncpy(portName, pn, 30);
00065 baud_ = baud;
00066 }
00067
00068 EmbeddedLinuxHardware()
00069 {
00070 const char *envPortName = getenv("ROSSERIAL_PORT");
00071 if (envPortName == NULL)
00072 strcpy(portName, DEFAULT_PORT);
00073 else
00074 strncpy(portName, envPortName, 29);
00075 portName[29] = '\0';
00076 baud_ = 57600;
00077 }
00078
00079 void setBaud(long baud)
00080 {
00081 this->baud_ = baud;
00082 }
00083
00084 int getBaud()
00085 {
00086 return baud_;
00087 }
00088
00089 void init()
00090 {
00091 fd = elCommInit(portName, baud_);
00092 if (fd < 0)
00093 {
00094 std::cout << "Exiting" << std::endl;
00095 exit(-1);
00096 }
00097 std::cout << "EmbeddedHardware.h: opened serial port successfully\n";
00098
00099 initTime();
00100 }
00101
00102 void init(const char *pName)
00103 {
00104 fd = elCommInit(pName, baud_);
00105 if (fd < 0)
00106 {
00107 std::cout << "Exiting" << std::endl;
00108 exit(-1);
00109 }
00110 std::cout << "EmbeddedHardware.h: opened comm port successfully\n";
00111
00112 initTime();
00113 }
00114
00115 int read()
00116 {
00117 int c = elCommRead(fd);
00118 return c;
00119 }
00120
00121 void write(uint8_t* data, int length)
00122 {
00123 elCommWrite(fd, data, length);
00124 }
00125
00126 #ifdef __linux__
00127 void initTime()
00128 {
00129 clock_gettime(CLOCK_MONOTONIC, &start);
00130 }
00131
00132 unsigned long time()
00133 {
00134 struct timespec end;
00135 long seconds, nseconds;
00136
00137 clock_gettime(CLOCK_MONOTONIC, &end);
00138
00139 seconds = end.tv_sec - start.tv_sec;
00140 nseconds = end.tv_nsec - start.tv_nsec;
00141
00142 return ((seconds) * 1000 + nseconds / 1000000.0) + 0.5;
00143 }
00144
00145 #elif __MACH__
00146 void initTime()
00147 {
00148 start = mach_absolute_time();
00149 mach_timebase_info(&sTimebaseInfo);
00150 }
00151
00152 unsigned long time()
00153 {
00154
00155 uint64_t elapsed = mach_absolute_time() - start;
00156 return elapsed * sTimebaseInfo.numer / (sTimebaseInfo.denom * 1000000);
00157 }
00158 #endif
00159
00160 protected:
00161 int fd;
00162 char portName[30];
00163 long baud_;
00164
00165 #ifdef __linux__
00166 struct timespec start;
00167 #elif __MACH__
00168 uint64_t start;
00169 #endif
00170 };
00171
00172 #endif