2023-04-11 14:04:38 +02:00
|
|
|
#include <stdint.h>
|
2023-04-18 14:44:24 +02:00
|
|
|
#include <algorithm>
|
|
|
|
|
2023-04-11 14:04:38 +02:00
|
|
|
#include <QString>
|
|
|
|
#include <QDebug>
|
|
|
|
#include "tslib.h"
|
2023-04-18 13:43:37 +02:00
|
|
|
#include "shared_mem_buffer.h"
|
2023-04-11 14:04:38 +02:00
|
|
|
|
|
|
|
// ///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// control serial interface gui <--> serial
|
|
|
|
// ///////////////////////////////////////////////////////////////////////////////////
|
2023-04-18 13:43:37 +02:00
|
|
|
void epi_setSerial(int BaudNr,
|
|
|
|
QString BaudStr,
|
|
|
|
QString ComName,
|
|
|
|
uint8_t connect) {
|
|
|
|
memset(&SharedMemBuffer::getData()->rs.comportName[0], 0x00,
|
|
|
|
sizeof(SharedMemBuffer::getData()->rs.comportName));
|
|
|
|
strncpy(SharedMemBuffer::getData()->rs.comportName,
|
|
|
|
ComName.toStdString().c_str(),
|
|
|
|
sizeof(SharedMemBuffer::getData()->rs.comportName)-1);
|
2023-04-11 14:04:38 +02:00
|
|
|
|
2023-04-18 13:43:37 +02:00
|
|
|
memset(&SharedMemBuffer::getData()->rs.baudStr[0], 0x00,
|
|
|
|
sizeof(SharedMemBuffer::getData()->rs.baudStr));
|
|
|
|
strncpy(SharedMemBuffer::getData()->rs.baudStr,
|
|
|
|
BaudStr.toStdString().c_str(),
|
|
|
|
sizeof(SharedMemBuffer::getData()->rs.baudStr)-1);
|
2023-04-11 14:04:38 +02:00
|
|
|
|
2023-04-18 13:43:37 +02:00
|
|
|
SharedMemBuffer::getData()->rs.baudNr = BaudNr;
|
|
|
|
SharedMemBuffer::getData()->rs.connect = connect;
|
2023-04-11 14:04:38 +02:00
|
|
|
}
|
|
|
|
|
2023-04-18 13:43:37 +02:00
|
|
|
void epi_closeSerial(void) {
|
|
|
|
SharedMemBuffer::getData()->rs.connect = 0;
|
2023-04-11 14:04:38 +02:00
|
|
|
}
|
|
|
|
|
2023-04-18 13:43:37 +02:00
|
|
|
void gpi_serialChanged(void) {
|
2023-04-11 14:04:38 +02:00
|
|
|
// serial confirms that port was closed or opened
|
2023-04-18 13:43:37 +02:00
|
|
|
// rs_connect=2; // Flanke, nur 1x öffnen/schließen
|
|
|
|
SharedMemBuffer::getData()->rs.connect = 2;
|
2023-04-11 14:04:38 +02:00
|
|
|
}
|
|
|
|
|
2023-04-18 13:43:37 +02:00
|
|
|
uint8_t gpi_getSerialConn(void) {
|
|
|
|
return SharedMemBuffer::getDataConst()->rs.connect;
|
2023-04-11 14:04:38 +02:00
|
|
|
}
|
|
|
|
|
2023-04-18 13:43:37 +02:00
|
|
|
int gpi_getBaudNr(void) {
|
|
|
|
return SharedMemBuffer::getDataConst()->rs.baudNr;
|
2023-04-11 14:04:38 +02:00
|
|
|
}
|
|
|
|
|
2023-04-18 13:43:37 +02:00
|
|
|
QString gpi_getComPortName(void) {
|
|
|
|
return SharedMemBuffer::getDataConst()->rs.comportName;
|
2023-04-11 14:04:38 +02:00
|
|
|
}
|
|
|
|
|
2023-04-18 13:43:37 +02:00
|
|
|
void gpi_serialIsOpen(bool offen) {
|
|
|
|
SharedMemBuffer::getData()->rs.portIsOpen = offen;
|
2023-04-11 14:04:38 +02:00
|
|
|
}
|
|
|
|
|
2023-04-18 13:43:37 +02:00
|
|
|
bool epi_isSerialPortOpen() {
|
2023-04-11 14:04:38 +02:00
|
|
|
// true: port is open false: port is closed
|
2023-04-18 13:43:37 +02:00
|
|
|
return SharedMemBuffer::getDataConst()->rs.portIsOpen;
|
2023-04-11 14:04:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// ///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Control transfer gui <--> serial
|
|
|
|
// ///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2023-04-18 13:43:37 +02:00
|
|
|
void epi_startEmmision(char start) {
|
|
|
|
SharedMemBuffer::getData()->AutoEmissionOn = start;
|
2023-04-11 14:04:38 +02:00
|
|
|
}
|
|
|
|
|
2023-04-18 13:43:37 +02:00
|
|
|
bool gpi_isEmmisionOn(void) {
|
|
|
|
return SharedMemBuffer::getDataConst()->AutoEmissionOn;
|
2023-04-11 14:04:38 +02:00
|
|
|
}
|
|
|
|
|
2023-04-18 13:43:37 +02:00
|
|
|
uint16_t gpi_getPeriodicSendTimeVal() {
|
|
|
|
SharedMemBuffer::getData()->datif.sendingPer_changed = 0;
|
|
|
|
if ((SharedMemBuffer::getDataConst()->datif.sendingPeriod < 3) ||
|
|
|
|
(SharedMemBuffer::getDataConst()->datif.sendingPeriod > 10000)) {
|
2023-04-11 14:04:38 +02:00
|
|
|
return 130; // ms, default
|
2023-04-18 13:43:37 +02:00
|
|
|
}
|
|
|
|
return SharedMemBuffer::getDataConst()->datif.sendingPeriod;
|
2023-04-11 14:04:38 +02:00
|
|
|
}
|
|
|
|
|
2023-04-18 13:43:37 +02:00
|
|
|
void epi_setPeriodicSendTimeVal(uint16_t val) {
|
|
|
|
if (val>=3 && val<10000) {
|
|
|
|
SharedMemBuffer::getData()->datif.sendingPer_changed = 1;
|
|
|
|
SharedMemBuffer::getData()->datif.sendingPeriod = val;
|
2023-04-11 14:04:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-18 13:43:37 +02:00
|
|
|
bool gpi_PeriodicSendTimeHasChanged() {
|
|
|
|
return SharedMemBuffer::getDataConst()->datif.sendingPer_changed;
|
2023-04-11 14:04:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// ///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Status Display gui <--> serial
|
|
|
|
// ///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// linke Spalte, über Connect Button
|
|
|
|
static QString txt4comStateLine;
|
|
|
|
|
2023-04-18 14:44:24 +02:00
|
|
|
QString epi_getTxt4comStateLine(void) {
|
2023-04-11 14:04:38 +02:00
|
|
|
// GUI: get Text for serial Comport-State Line
|
|
|
|
return txt4comStateLine;
|
|
|
|
}
|
|
|
|
|
2023-04-18 14:44:24 +02:00
|
|
|
void gpi_setTxt4comStateLine(QString txtline) {
|
2023-04-11 14:04:38 +02:00
|
|
|
// serial: write Text to be displayed in serial Comport-State line (like "connected")
|
|
|
|
txt4comStateLine.clear();
|
|
|
|
if (txtline=="")
|
|
|
|
txt4comStateLine.clear();
|
|
|
|
else
|
|
|
|
txt4comStateLine=txtline;
|
|
|
|
}
|
|
|
|
|
2023-04-18 14:44:24 +02:00
|
|
|
void epi_clrTxt4comStateLine() {
|
2023-04-11 14:04:38 +02:00
|
|
|
txt4comStateLine.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
// rechte Spalte, oberste Statuszeile
|
|
|
|
// I) "Handshakes" (serial Control) flow.cpp
|
|
|
|
// geht überhaupt was raus? kommt überhaupt was zurück?
|
|
|
|
static QString txt4HsStateLine;
|
|
|
|
|
2023-04-18 14:44:24 +02:00
|
|
|
QString epi_getTxt4HsStateLine(void) {
|
2023-04-11 14:04:38 +02:00
|
|
|
return txt4HsStateLine;
|
|
|
|
}
|
|
|
|
|
2023-04-18 14:44:24 +02:00
|
|
|
void gpi_setTxt4HsStateLine(QString txtline) {
|
2023-04-11 14:04:38 +02:00
|
|
|
txt4HsStateLine.clear();
|
|
|
|
if (txtline=="")
|
|
|
|
txt4HsStateLine.clear();
|
|
|
|
else
|
|
|
|
txt4HsStateLine=txtline;
|
|
|
|
}
|
|
|
|
|
2023-04-18 14:44:24 +02:00
|
|
|
void epi_clrTxt4HsStateLine() {
|
2023-04-11 14:04:38 +02:00
|
|
|
txt4HsStateLine.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
// II) Master receive state (empfangenes Telgramm OK? crc? length? )
|
|
|
|
// Statuszeile Auswertung der SlaveResponse (serial Frame, CRC usw) (prot.cpp)
|
|
|
|
static QString txt4masterStateLine;
|
|
|
|
|
2023-04-18 14:44:24 +02:00
|
|
|
QString epi_getTxt4masterStateLine(void) {
|
2023-04-11 14:04:38 +02:00
|
|
|
return txt4masterStateLine;
|
|
|
|
}
|
|
|
|
|
2023-04-18 14:44:24 +02:00
|
|
|
void gpi_setTxt4masterStateLine(QString txtline) {
|
2023-04-11 14:04:38 +02:00
|
|
|
txt4masterStateLine.clear();
|
|
|
|
if (txtline=="")
|
|
|
|
txt4masterStateLine.clear();
|
|
|
|
else
|
|
|
|
txt4masterStateLine=txtline;
|
|
|
|
}
|
|
|
|
|
2023-04-18 14:44:24 +02:00
|
|
|
void epi_clrTxt4masterStateLine() {
|
2023-04-11 14:04:38 +02:00
|
|
|
txt4masterStateLine.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// III Slave receive (from Master) OK? if then show results, if not then show errors
|
|
|
|
// entweder Empfangsfehler anzeigen (crc? length?) oder result OUT-OK, OUT_ERR, IN_OK, IN_ERR
|
|
|
|
// Hintergrund: wenn der Slave Fehler im Master-Telegramm gefunden hat, dann kann er es auch
|
|
|
|
// nicht verwenden und nichts ausgeben oder einlesen
|
|
|
|
|
|
|
|
static QString txt4resultStateLine;
|
|
|
|
|
2023-04-18 14:44:24 +02:00
|
|
|
QString epi_getTxt4resultStateLine(void) {
|
2023-04-11 14:04:38 +02:00
|
|
|
return txt4resultStateLine;
|
|
|
|
}
|
|
|
|
|
2023-04-18 14:44:24 +02:00
|
|
|
void gpi_setTxt4resultStateLine(QString txtline) {
|
2023-04-11 14:04:38 +02:00
|
|
|
txt4resultStateLine.clear();
|
|
|
|
if (txtline=="")
|
|
|
|
txt4resultStateLine.clear();
|
|
|
|
else
|
|
|
|
txt4resultStateLine=txtline;
|
|
|
|
}
|
|
|
|
|
2023-04-18 14:44:24 +02:00
|
|
|
void epi_clrTxt4resultStateLine() {
|
2023-04-11 14:04:38 +02:00
|
|
|
txt4resultStateLine.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// IV Statuszeile Empfangsdaten
|
|
|
|
static QString txt4dataLine;
|
|
|
|
|
2023-04-18 14:44:24 +02:00
|
|
|
QString epi_getTxt4dataStateLine(void) {
|
2023-04-11 14:04:38 +02:00
|
|
|
// GUI: get Text for serial Comport-State Line
|
|
|
|
return txt4dataLine;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-04-18 14:44:24 +02:00
|
|
|
void gpi_setTxt4dataStateLine(QString txtline) {
|
2023-04-11 14:04:38 +02:00
|
|
|
// serial: write Text to be displayed in serial Comport-State line (like "connected")
|
|
|
|
txt4dataLine.clear();
|
|
|
|
if (txtline=="")
|
|
|
|
txt4dataLine.clear();
|
|
|
|
else
|
|
|
|
txt4dataLine=txtline;
|
|
|
|
}
|
|
|
|
|
2023-04-18 14:44:24 +02:00
|
|
|
void epi_clrTxt4dataStateLine() {
|
2023-04-11 14:04:38 +02:00
|
|
|
txt4dataLine.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// 5. Zeile: Datif Ergebnis, Daten brauchbar?
|
|
|
|
|
|
|
|
static QString txt4datifReceive;
|
|
|
|
|
2023-04-18 14:44:24 +02:00
|
|
|
QString epi_getTxt4datifLine(void) {
|
2023-04-11 14:04:38 +02:00
|
|
|
return txt4datifReceive;
|
|
|
|
}
|
|
|
|
|
2023-04-18 14:44:24 +02:00
|
|
|
void gpi_setTxt4datifLine(QString txtline) {
|
2023-04-11 14:04:38 +02:00
|
|
|
txt4datifReceive.clear();
|
|
|
|
if (txtline=="")
|
|
|
|
txt4datifReceive.clear();
|
|
|
|
else
|
|
|
|
txt4datifReceive=txtline;
|
|
|
|
}
|
|
|
|
|
2023-04-18 14:44:24 +02:00
|
|
|
void epi_clrTxt4datifLine() {
|
2023-04-11 14:04:38 +02:00
|
|
|
txt4datifReceive.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------
|
|
|
|
//---------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
static QString txt4diagWindow;
|
|
|
|
|
2023-04-18 14:44:24 +02:00
|
|
|
QString epi_getTxt4RsDiagWin(void) {
|
2023-04-11 14:04:38 +02:00
|
|
|
return txt4diagWindow;
|
|
|
|
}
|
|
|
|
|
2023-04-18 14:44:24 +02:00
|
|
|
void gpi_setTxt4RsDiagWin(QString txtline) {
|
2023-04-11 14:04:38 +02:00
|
|
|
txt4diagWindow.clear();
|
|
|
|
if (txtline=="")
|
|
|
|
txt4diagWindow.clear();
|
|
|
|
else
|
|
|
|
txt4diagWindow=txtline;
|
|
|
|
}
|
|
|
|
|
2023-04-18 14:44:24 +02:00
|
|
|
void epi_clrTxt4RsDiagWin() {
|
2023-04-11 14:04:38 +02:00
|
|
|
txt4diagWindow.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
static QString sndTxt4diagWindow;
|
|
|
|
|
2023-04-18 14:44:24 +02:00
|
|
|
QString epi_get2ndTxt4RsDiagWin(void) {
|
2023-04-11 14:04:38 +02:00
|
|
|
return sndTxt4diagWindow;
|
|
|
|
}
|
|
|
|
|
2023-04-18 14:44:24 +02:00
|
|
|
void gpi_set2ndTxt4RsDiagWin(QString txtline) {
|
2023-04-11 14:04:38 +02:00
|
|
|
sndTxt4diagWindow.clear();
|
|
|
|
if (txtline=="")
|
|
|
|
sndTxt4diagWindow.clear();
|
|
|
|
else
|
|
|
|
sndTxt4diagWindow=txtline;
|
|
|
|
}
|
|
|
|
|
2023-04-18 14:44:24 +02:00
|
|
|
void epi_clr2ndTxt4RsDiagWin() {
|
2023-04-11 14:04:38 +02:00
|
|
|
sndTxt4diagWindow.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
// ///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Memory for Slave responses, common data
|
|
|
|
// ///////////////////////////////////////////////////////////////////////////////////
|
2023-04-18 14:44:24 +02:00
|
|
|
void gpi_storeResult_serialTestOK(bool wasOk) {
|
|
|
|
SharedMemBuffer::getData()->Sdata.serialTestResult = wasOk;
|
2023-04-11 14:04:38 +02:00
|
|
|
}
|
|
|
|
|
2023-04-18 14:44:24 +02:00
|
|
|
bool epi_getResult_serialTestOK() {
|
2023-04-11 14:04:38 +02:00
|
|
|
// retval: true: test was successful, got right response
|
2023-04-18 14:44:24 +02:00
|
|
|
return SharedMemBuffer::getDataConst()->Sdata.serialTestResult;
|
2023-04-11 14:04:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// ///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Store received data for hwapi
|
|
|
|
// ///////////////////////////////////////////////////////////////////////////////////
|
2023-04-18 14:44:24 +02:00
|
|
|
void gpi_startNewRequest() {
|
|
|
|
SharedMemBuffer::getData()->Sdata.pProtResultOk = 0;
|
2023-04-11 14:04:38 +02:00
|
|
|
}
|
|
|
|
|
2023-04-18 14:44:24 +02:00
|
|
|
void gpi_storeResultOfLastRequest(bool answisok) {
|
|
|
|
SharedMemBuffer::getData()->Sdata.pProtResultOk = answisok ? 1 : 2;
|
2023-04-11 14:04:38 +02:00
|
|
|
}
|
|
|
|
|
2023-04-18 14:44:24 +02:00
|
|
|
uint8_t epi_getResultOfLastRequest() {
|
2023-04-11 14:04:38 +02:00
|
|
|
// retval: 0: in progress 1: OK 2: error
|
2023-04-18 14:44:24 +02:00
|
|
|
return SharedMemBuffer::getDataConst()->Sdata.pProtResultOk;
|
2023-04-11 14:04:38 +02:00
|
|
|
}
|
|
|
|
|
2023-04-18 14:44:24 +02:00
|
|
|
void gpi_storeRecPayLoad(uint8_t RdDlen, uint8_t const *receivedData) {
|
|
|
|
SharedMemBuffer::getData()->Sdata.receivedDataLength
|
|
|
|
= std::min(RdDlen, (uint8_t)(64));
|
|
|
|
memset((char *)(&SharedMemBuffer::getData()->Sdata.receivedDataBlock[0]),
|
|
|
|
0x00, sizeof(SharedMemBuffer::getData()->Sdata.receivedDataBlock));
|
|
|
|
strncpy((char *)(&SharedMemBuffer::getData()->Sdata.receivedDataBlock[0]),
|
|
|
|
(char const *)receivedData,
|
|
|
|
sizeof(SharedMemBuffer::getData()->Sdata.receivedDataBlock)-1);
|
2023-04-11 14:04:38 +02:00
|
|
|
}
|
|
|
|
|
2023-04-18 14:44:24 +02:00
|
|
|
uint16_t epi_getLastPayLoad(uint16_t plBufSiz, uint8_t *payLoad) {
|
2023-04-11 14:04:38 +02:00
|
|
|
// get data back in *pl, max 64 byte
|
|
|
|
// retval = nr of bytes received. If host buffer too small then
|
|
|
|
// only plBufSíz bytes are copied to pl
|
|
|
|
// plBufSíz=size of host buffer
|
|
|
|
|
2023-04-18 14:44:24 +02:00
|
|
|
uint16_t ml = std::min(plBufSiz, (uint16_t)(64));
|
|
|
|
if (SharedMemBuffer::getDataConst()->Sdata.receivedDataLength < ml) {
|
|
|
|
ml = SharedMemBuffer::getDataConst()->Sdata.receivedDataLength;
|
|
|
|
}
|
|
|
|
strncpy((char *)payLoad,
|
|
|
|
(char const *)(&SharedMemBuffer::getData()->Sdata.receivedDataBlock[0]),
|
|
|
|
ml);
|
2023-04-11 14:04:38 +02:00
|
|
|
|
2023-04-18 14:44:24 +02:00
|
|
|
return SharedMemBuffer::getDataConst()->Sdata.receivedDataLength;
|
|
|
|
}
|