YULTek/Otarcik_CAN/Sources/PCANInterface.h
2023-01-15 12:38:14 -05:00

30 lines
448 B
C++

#ifndef PCANINTERFACE_H
#define PCANINTERFACE_H
#include <QObject>
#include "CANMessage.h"
#include "PCANBasic.h"
#include <QList>
//class CCANMessage;
class CPCANInterface : public QObject
{
Q_OBJECT
public:
explicit CPCANInterface(QObject *parent = 0);
int Init();
int DeInit(unsigned short Channel);
QList<CCANMessage*> ReadCANFullBuffer(unsigned short Channel);
signals:
public slots:
};
#endif // PCANINTERFACE_H