##// END OF EJS Templates
Functions added to the Python API:...
Functions added to the Python API: StarDundeeGetAvailableBrickCount StarDundeeSetBrickAsAninterface StarDundeeSetBrickAsARouter TCP Statistics udpated when packets are received or transmitted Spacewire statistics added router mode added for the STAR-Dundee Brick other minor modifications

File last commit:

r34:ccd56e93ef09 default
r35:a4e9ba42be66 Patch 1 from Paul on spwplugin default
Show More
ahbuartpywrapper.h
25 lines | 759 B | text/x-c | CLexer
#ifndef AHBUARTPYWRAPPER_H
#define AHBUARTPYWRAPPER_H
#include <socexplorerplugin.h>
#include <genericPySysdriver.h>
#include <QString>
#include <qobject.h>
class ahbuartPywrapper : public genericPySysdriver
{
Q_OBJECT
public:
explicit ahbuartPywrapper(socexplorerplugin *parent = 0);
signals:
bool open(QString PortName,int baudrate);
void close();
QVariantList ReadBytes(unsigned int address,unsigned int count);
void WriteBytes(unsigned int address,QList<QVariant> dataList);
public slots:
// bool dumpMemory(unsigned int address,unsigned int count,QString file);
// bool memSet(unsigned int address,int value, unsigned int count);
// bool loadbin(unsigned int address,QString file);
};
#endif // AHBUARTPYWRAPPER_H