##// END OF EJS Templates
Functions added to the plugin to get the number of CCSDS packets...
Functions added to the plugin to get the number of CCSDS packets transmitted (linked to the lfrcontrol plugin counter of TC transmitted, it is possible to flush the TC transmission before changing the spacewire link in use)

File last commit:

r34:ccd56e93ef09 default
r40:cda6b4e8adc1 Patch 3 from Paul on spwplugin default
Show More
ahbuartpywrapper.h
25 lines | 759 B | text/x-c | CLexer
First init /!\ outdated spwplugin!
r0 #ifndef AHBUARTPYWRAPPER_H
#define AHBUARTPYWRAPPER_H
Removed APBUartPlugin bug (when switching between debug and non debug link)....
r34 #include <socexplorerplugin.h>
First init /!\ outdated spwplugin!
r0 #include <genericPySysdriver.h>
#include <QString>
Removed APBUartPlugin bug (when switching between debug and non debug link)....
r34 #include <qobject.h>
First init /!\ outdated spwplugin!
r0
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