##// END OF EJS Templates
Improved APB UART Plugin, now check how many bytes are available on uart...
Improved APB UART Plugin, now check how many bytes are available on uart before reading. Memchecker Work In Progress.

File last commit:

r0:2d12462f4460 default
r32:4c8d1b562d91 default
Show More
ahbuartpywrapper.h
23 lines | 707 B | text/x-c | CLexer
#ifndef AHBUARTPYWRAPPER_H
#define AHBUARTPYWRAPPER_H
#include <genericPySysdriver.h>
#include <QString>
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