代码拉取完成,页面将自动刷新
同步操作将从 ianaxe/vrpn 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
// Device drivers for the LUDL family of translation stage controllers.
// The only device currently implemented is the USBMAC6000 controller in its
// two-axis configuration controlling the stage for the Panoptes system
// at UNC Chapel Hill.
#ifndef VRPN_LUDL_H
#define VRPN_LUDL_H
#include "vrpn_Analog.h" // for vrpn_Analog
#include "vrpn_Analog_Output.h" // for vrpn_Analog_Output
#include "vrpn_Configure.h" // for VRPN_CALLBACK, etc
#include "vrpn_Connection.h" // for vrpn_CONNECTION_RELIABLE, etc
#include "vrpn_Shared.h" // for timeval
#include "vrpn_Types.h" // for vrpn_uint32, vrpn_uint8, etc
#if defined(VRPN_USE_LIBUSB_1_0)
// This driver uses the VRPN-preferred LibUSB-1.0 to control the device.
// It exposes the vrpn_Analog and the
// vrpn_Analog_Output interfaces, to report and set the stage position.
// The first two entries below enable the client to set the desired
// position (in ticks) and to read back when the device has finished
// the move to the requested position. They do not actually look at
// the position sensors on the device.
//
// Analog/Analog_Output channel 0 is X (0 to maximum #ticks, in ticks).
// Analog/Analog_Output channel 1 is Y (0 to maximum #ticks, in ticks).
//
// The next two report the actual sensor positions in X and Y. These
// may differ by quite a lot (a micron or more) from the requested
// position, so code that is watching to see if a requested move has
// completed should use the ones above, but those that want to know
// the actual postion, even as it shifts, should use the ones below.
//
// Analog channel 2 is X (0 to maximum #ticks, in ticks).
// Analog channel 3 is Y (0 to maximum #ticks, in ticks).
class vrpn_LUDL_USBMAC6000 :
public vrpn_Analog,
public vrpn_Analog_Output
{
public:
vrpn_LUDL_USBMAC6000(const char *name, vrpn_Connection *c = 0, bool do_recenter = false);
virtual ~vrpn_LUDL_USBMAC6000();
virtual void mainloop();
protected:
struct libusb_context *_context; // LibUSB context used for this device
struct libusb_device_handle *_device_handle; // Handle for the USB device
struct timeval _timestamp;
unsigned _endpoint; // Which endpoint to use to communicate with the device
// Buffer to store incoming data from the device and count of how many characters
// we got. Function to check and read any incoming data (and set _incount).
// Function to parse accumulated data.
static const unsigned _INBUFFER_SIZE = 1024;
vrpn_uint8 _inbuffer[_INBUFFER_SIZE]; // MUST CHANGE the sizeof() code if this becomes not an array.
unsigned _incount;
bool check_for_data(); // False if error. True even if no data.
bool interpret_usbmac_ascii_response(const vrpn_uint8 *buffer,
int *device_return,
int *command_return,
int *index_return,
int *value_return);
// vrpn_Analog overridden methods.
// Send report iff changed
void report_changes (vrpn_uint32 class_of_service = vrpn_CONNECTION_RELIABLE);
// Send report whether or not changed
void report (vrpn_uint32 class_of_service = vrpn_CONNECTION_RELIABLE);
// No actual types to register, derived classes will be analogs and analog_outputs
int register_types(void) { return 0; }
// Handlers for the Analog_Output messages.
/// Responds to a request to change one of the values by
/// setting the channel to that value.
static int VRPN_CALLBACK handle_request_message(void *userdata, vrpn_HANDLERPARAM p);
/// Responds to a request to change multiple channels at once.
static int VRPN_CALLBACK handle_request_channels_message(void *userdata, vrpn_HANDLERPARAM p);
/// Responds to a connection request with a report of the values
static int VRPN_CALLBACK handle_connect_message(void *userdata, vrpn_HANDLERPARAM p);
private:
// Helper functions for communication with the stage
void flush_input_from_ludl(void);
bool send_usbmac_command(unsigned device, unsigned command, unsigned index, int value);
bool recenter(void);
bool ludl_axis_moving(unsigned axis); // Returns true if the axis is still moving
bool move_axis_to_position(int axis, int position);
// Returns true on success, fills in the position of the axis.
bool ludl_axis_position(unsigned axis, vrpn_int32 *position_return);
// Stores whether we think each axis is moving and where we think each axis is
// going if it is moving. These are set in the move_axis_to_position() routine
// and used in the mainloop() routine to decide if it is time to report that we
// have gotten where we want to be.
bool *_axis_moving;
vrpn_float64 *_axis_destination;
};
// end of OS selection
#endif
// end of VRPN_LUDL_H
#endif
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。