📄 can_copley.h
字号:
/************************************************************/
/* */
/* Copley Motion Libraries */
/* */
/* Author: Stephen Glow */
/* */
/* Copyright (c) 2002-2003 Copley Controls Corp. */
/* http://www.copleycontrols.com */
/* */
/************************************************************/
/** \file
CAN hardware interface for the Copley Controls CAN card
*/
#ifndef _DEF_INC_CAN_COPLEY
#define _DEF_INC_CAN_COPLEY
#include "CML_Settings.h"
#include "CML_Can.h"
#include "CML_Utils.h"
CML_NAMESPACE_START();
/**
This class extends the generic CanInterface class into a working
interface for the Copley can device driver.
*/
class CopleyCAN : public CanInterface
{
public:
CopleyCAN( void );
CopleyCAN( const char *port );
~CopleyCAN( void );
const Error *Open( const char *name ){
portName = name;
return Open();
}
const Error *Open( void );
const Error *Close( void );
const Error *SetBaud( int32 baud );
protected:
const Error *RecvFrame( CanFrame &frame, int32 timeout );
const Error *XmitFrame( CanFrame &frame, int32 timeout );
/// tracks the state of the interface as open or closed.
int open;
/// Holds a copy of the last baud rate set
int32 baud;
/// This pointer is used to keep track of private data
/// used by the driver.
void *local;
};
CML_NAMESPACE_END();
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -