2021-06-16 18:38:06 +02:00
|
|
|
|
#include "UartTestClass.h"
|
2022-02-09 12:07:29 +01:00
|
|
|
|
|
2022-02-22 20:13:16 +01:00
|
|
|
|
#include <errno.h> // Error integer and strerror() function
|
|
|
|
|
#include <fcntl.h> // Contains file controls like O_RDWR
|
2022-02-09 12:07:29 +01:00
|
|
|
|
#include <fsfw/tasks/TaskFactory.h>
|
2022-04-08 19:12:21 +02:00
|
|
|
|
#include <fsfw_hal/linux/uart/UartCookie.h>
|
2022-04-09 14:43:06 +02:00
|
|
|
|
#include <linux/devices/ScexDleParser.h>
|
2022-04-21 19:47:09 +02:00
|
|
|
|
#include <linux/devices/ScexHelper.h>
|
2022-04-08 19:12:21 +02:00
|
|
|
|
#include <linux/devices/ScexUartReader.h>
|
2022-01-17 13:48:55 +01:00
|
|
|
|
#include <unistd.h> // write(), read(), close()
|
2021-06-16 18:38:06 +02:00
|
|
|
|
|
2022-02-22 20:13:16 +01:00
|
|
|
|
#include "OBSWConfig.h"
|
2022-02-04 17:48:05 +01:00
|
|
|
|
#include "fsfw/globalfunctions/CRC.h"
|
2022-02-09 12:07:29 +01:00
|
|
|
|
#include "fsfw/globalfunctions/DleEncoder.h"
|
2022-02-04 17:48:05 +01:00
|
|
|
|
#include "fsfw/globalfunctions/arrayprinter.h"
|
|
|
|
|
#include "fsfw/serviceinterface.h"
|
2021-06-16 18:38:06 +02:00
|
|
|
|
|
2022-01-17 13:48:55 +01:00
|
|
|
|
#define GPS_REPLY_WIRETAPPING 0
|
2021-06-16 18:38:06 +02:00
|
|
|
|
|
2022-03-08 09:37:23 +01:00
|
|
|
|
#ifndef RPI_TEST_GPS_HANDLER
|
|
|
|
|
#define RPI_TEST_GPS_HANDLER 0
|
|
|
|
|
#endif
|
|
|
|
|
|
2022-04-08 19:12:21 +02:00
|
|
|
|
UartTestClass::UartTestClass(object_id_t objectId, ScexUartReader* reader)
|
2022-04-15 01:39:47 +02:00
|
|
|
|
: TestTask(objectId), reader(reader) {
|
|
|
|
|
mode = TestModes::SCEX;
|
|
|
|
|
scexMode = ScexModes::READER_TASK;
|
2022-04-26 13:22:56 +02:00
|
|
|
|
currCmd = scex::ScexCmds::FRAM;
|
2022-04-15 01:39:47 +02:00
|
|
|
|
if (scexMode == ScexModes::SIMPLE) {
|
|
|
|
|
auto encodingBuf = new std::array<uint8_t, 4096>;
|
|
|
|
|
DleParser::BufPair encodingBufPair{encodingBuf->data(), encodingBuf->size()};
|
|
|
|
|
auto decodedBuf = new std::array<uint8_t, 4096>;
|
|
|
|
|
DleParser::BufPair decodingBufPair{decodedBuf->data(), decodedBuf->size()};
|
|
|
|
|
dleParser = new ScexDleParser(*(new SimpleRingBuffer(4096, true)), dleEncoder, encodingBufPair,
|
|
|
|
|
decodingBufPair, &foundDlePacketHandler, this);
|
|
|
|
|
}
|
2022-04-08 19:12:21 +02:00
|
|
|
|
}
|
2021-03-04 18:29:28 +01:00
|
|
|
|
|
2021-06-16 18:38:06 +02:00
|
|
|
|
ReturnValue_t UartTestClass::initialize() {
|
2022-04-15 01:39:47 +02:00
|
|
|
|
if (mode == TestModes::GPS) {
|
|
|
|
|
gpsInit();
|
|
|
|
|
} else if (mode == TestModes::SCEX) {
|
|
|
|
|
scexInit();
|
|
|
|
|
}
|
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
2022-02-03 13:37:48 +01:00
|
|
|
|
}
|
|
|
|
|
|
2022-02-03 16:04:24 +01:00
|
|
|
|
ReturnValue_t UartTestClass::performOneShotAction() { return HasReturnvaluesIF::RETURN_OK; }
|
2022-02-03 13:37:48 +01:00
|
|
|
|
|
|
|
|
|
ReturnValue_t UartTestClass::performPeriodicAction() {
|
2022-04-15 01:39:47 +02:00
|
|
|
|
if (mode == TestModes::GPS) {
|
|
|
|
|
gpsPeriodic();
|
|
|
|
|
} else if (mode == TestModes::SCEX) {
|
|
|
|
|
scexPeriodic();
|
|
|
|
|
}
|
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
2022-02-03 13:37:48 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void UartTestClass::gpsInit() {
|
2022-02-22 20:13:16 +01:00
|
|
|
|
#if RPI_TEST_GPS_HANDLER == 1
|
2022-04-15 01:39:47 +02:00
|
|
|
|
int result = lwgps_init(&gpsData);
|
|
|
|
|
if (result == 0) {
|
|
|
|
|
sif::warning << "lwgps_init error: " << result << std::endl;
|
|
|
|
|
}
|
2021-06-16 18:38:06 +02:00
|
|
|
|
|
2022-04-15 01:39:47 +02:00
|
|
|
|
/* Get file descriptor */
|
|
|
|
|
serialPort = open("/dev/serial0", O_RDWR);
|
|
|
|
|
if (serialPort < 0) {
|
|
|
|
|
sif::warning << "open call failed with error [" << errno << ", " << strerror(errno)
|
|
|
|
|
<< std::endl;
|
|
|
|
|
}
|
|
|
|
|
/* Setting up UART parameters */
|
|
|
|
|
tty.c_cflag &= ~PARENB; // Clear parity bit
|
|
|
|
|
tty.c_cflag &= ~CSTOPB; // Clear stop field, only one stop bit used in communication
|
|
|
|
|
tty.c_cflag &= ~CSIZE; // Clear all the size bits
|
|
|
|
|
tty.c_cflag |= CS8; // 8 bits per byte
|
|
|
|
|
tty.c_cflag &= ~CRTSCTS; // Disable RTS/CTS hardware flow control
|
|
|
|
|
tty.c_cflag |= CREAD | CLOCAL; // Turn on READ & ignore ctrl lines (CLOCAL = 1)
|
|
|
|
|
// Use canonical mode for GPS device
|
|
|
|
|
tty.c_lflag |= ICANON;
|
|
|
|
|
tty.c_lflag &= ~ECHO; // Disable echo
|
|
|
|
|
tty.c_lflag &= ~ECHOE; // Disable erasure
|
|
|
|
|
tty.c_lflag &= ~ECHONL; // Disable new-line echo
|
|
|
|
|
tty.c_lflag &= ~ISIG; // Disable interpretation of INTR, QUIT and SUSP
|
|
|
|
|
tty.c_iflag &= ~(IXON | IXOFF | IXANY); // Turn off s/w flow ctrl
|
|
|
|
|
tty.c_iflag &= ~(IGNBRK | BRKINT | PARMRK | ISTRIP | INLCR | IGNCR |
|
|
|
|
|
ICRNL); // Disable any special handling of received bytes
|
|
|
|
|
tty.c_oflag &= ~OPOST; // Prevent special interpretation of output bytes (e.g. newline chars)
|
|
|
|
|
tty.c_oflag &= ~ONLCR; // Prevent conversion of newline to carriage return/line feed
|
2021-06-16 18:38:06 +02:00
|
|
|
|
|
2022-04-15 01:39:47 +02:00
|
|
|
|
// Non-blocking mode
|
|
|
|
|
tty.c_cc[VTIME] = 0;
|
|
|
|
|
tty.c_cc[VMIN] = 0;
|
2021-06-16 18:38:06 +02:00
|
|
|
|
|
2022-04-15 01:39:47 +02:00
|
|
|
|
cfsetispeed(&tty, B9600);
|
|
|
|
|
cfsetospeed(&tty, B9600);
|
|
|
|
|
if (tcsetattr(serialPort, TCSANOW, &tty) != 0) {
|
|
|
|
|
sif::warning << "tcsetattr call failed with error [" << errno << ", " << strerror(errno)
|
|
|
|
|
<< std::endl;
|
|
|
|
|
;
|
|
|
|
|
}
|
|
|
|
|
// Flush received and unread data. Those are old NMEA strings which are not relevant anymore
|
|
|
|
|
tcflush(serialPort, TCIFLUSH);
|
2021-06-16 18:38:06 +02:00
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-03 13:37:48 +01:00
|
|
|
|
void UartTestClass::gpsPeriodic() {
|
2022-02-22 20:13:16 +01:00
|
|
|
|
#if RPI_TEST_GPS_HANDLER == 1
|
2022-04-15 01:39:47 +02:00
|
|
|
|
int bytesRead = 0;
|
|
|
|
|
do {
|
|
|
|
|
bytesRead = read(serialPort, reinterpret_cast<void*>(recBuf.data()),
|
|
|
|
|
static_cast<unsigned int>(recBuf.size()));
|
|
|
|
|
if (bytesRead < 0) {
|
|
|
|
|
sif::warning << "UartTestClass::performPeriodicAction: read call failed with error [" << errno
|
|
|
|
|
<< ", " << strerror(errno) << "]" << std::endl;
|
|
|
|
|
break;
|
|
|
|
|
} else if (bytesRead >= static_cast<int>(recBuf.size())) {
|
|
|
|
|
sif::debug << "UartTestClass::performPeriodicAction: "
|
|
|
|
|
"recv buffer might not be large enough"
|
|
|
|
|
<< std::endl;
|
|
|
|
|
} else if (bytesRead > 0) {
|
|
|
|
|
// pass data to lwgps for processing
|
2021-06-16 18:38:06 +02:00
|
|
|
|
#if GPS_REPLY_WIRETAPPING == 1
|
2022-04-15 01:39:47 +02:00
|
|
|
|
sif::info << recBuf.data() << std::endl;
|
2021-06-16 18:38:06 +02:00
|
|
|
|
#endif
|
2022-04-15 01:39:47 +02:00
|
|
|
|
int result = lwgps_process(&gpsData, recBuf.data(), bytesRead);
|
|
|
|
|
if (result == 0) {
|
|
|
|
|
sif::warning << "UartTestClass::performPeriodicAction: lwgps_process error" << std::endl;
|
|
|
|
|
}
|
|
|
|
|
recvCnt++;
|
|
|
|
|
if (recvCnt == 6) {
|
|
|
|
|
recvCnt = 0;
|
|
|
|
|
sif::info << "GPS Data" << std::endl;
|
|
|
|
|
// Print messages
|
|
|
|
|
printf("Valid status: %d\n", gpsData.is_valid);
|
|
|
|
|
printf("Latitude: %f degrees\n", gpsData.latitude);
|
|
|
|
|
printf("Longitude: %f degrees\n", gpsData.longitude);
|
|
|
|
|
printf("Altitude: %f meters\n", gpsData.altitude);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} while (bytesRead > 0);
|
2021-06-16 18:38:06 +02:00
|
|
|
|
#endif
|
2021-03-04 18:29:28 +01:00
|
|
|
|
}
|
2022-02-04 17:48:05 +01:00
|
|
|
|
|
|
|
|
|
void UartTestClass::scexInit() {
|
2022-04-15 01:39:47 +02:00
|
|
|
|
if (reader == nullptr) {
|
|
|
|
|
sif::warning << "UartTestClass::scexInit: Reader invalid" << std::endl;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (scexMode == ScexModes::SIMPLE) {
|
|
|
|
|
scexSimpleInit();
|
|
|
|
|
} else {
|
2022-04-08 19:12:21 +02:00
|
|
|
|
#if defined(RASPBERRY_PI)
|
2022-04-15 01:39:47 +02:00
|
|
|
|
std::string devname = "/dev/serial0";
|
2022-04-08 19:12:21 +02:00
|
|
|
|
#else
|
2022-04-15 01:39:47 +02:00
|
|
|
|
std::string devname = "/dev/ul-scex";
|
2022-04-08 19:12:21 +02:00
|
|
|
|
#endif
|
2022-04-15 01:39:47 +02:00
|
|
|
|
uartCookie = new UartCookie(this->getObjectId(), devname, UartBaudRate::RATE_57600, 4096);
|
2022-04-27 18:21:32 +02:00
|
|
|
|
reader->setDebugMode(false);
|
2022-04-15 01:39:47 +02:00
|
|
|
|
ReturnValue_t result = reader->initializeInterface(uartCookie);
|
|
|
|
|
if (result != HasReturnvaluesIF::RETURN_OK) {
|
|
|
|
|
sif::warning << "UartTestClass::gpsPeriodic: Initializing SCEX reader "
|
|
|
|
|
"UART IF failed"
|
|
|
|
|
<< std::endl;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-02-04 17:48:05 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void UartTestClass::scexPeriodic() {
|
2022-04-15 01:39:47 +02:00
|
|
|
|
using namespace std;
|
2022-04-21 19:47:09 +02:00
|
|
|
|
using namespace scex;
|
2022-04-15 01:39:47 +02:00
|
|
|
|
if (reader == nullptr) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2022-04-13 17:43:16 +02:00
|
|
|
|
|
2022-04-15 01:39:47 +02:00
|
|
|
|
if (scexMode == ScexModes::SIMPLE) {
|
|
|
|
|
scexSimplePeriodic();
|
|
|
|
|
} else {
|
|
|
|
|
if (not cmdSent) {
|
|
|
|
|
size_t len = 0;
|
2022-04-26 13:22:56 +02:00
|
|
|
|
prepareScexCmd(currCmd, false, cmdBuf.data(), &len);
|
2022-04-15 01:39:47 +02:00
|
|
|
|
reader->sendMessage(uartCookie, cmdBuf.data(), len);
|
|
|
|
|
cmdSent = true;
|
|
|
|
|
cmdDone = false;
|
|
|
|
|
}
|
|
|
|
|
if (cmdSent and not cmdDone) {
|
|
|
|
|
uint8_t* decodedPacket = nullptr;
|
|
|
|
|
size_t len = 0;
|
2022-04-27 18:21:32 +02:00
|
|
|
|
do {
|
|
|
|
|
ReturnValue_t result = reader->readReceivedMessage(uartCookie, &decodedPacket, &len);
|
2022-04-29 12:48:13 +02:00
|
|
|
|
if (len == 0) {
|
|
|
|
|
break;
|
2022-04-27 18:21:32 +02:00
|
|
|
|
}
|
2022-04-21 19:47:09 +02:00
|
|
|
|
ScexHelper helper;
|
|
|
|
|
const uint8_t* helperPtr = decodedPacket;
|
|
|
|
|
result = helper.deSerialize(&helperPtr, &len);
|
|
|
|
|
if (result == ScexHelper::INVALID_CRC) {
|
|
|
|
|
sif::warning << "CRC invalid" << std::endl;
|
2022-04-15 01:39:47 +02:00
|
|
|
|
}
|
2022-04-21 19:47:09 +02:00
|
|
|
|
sif::info << helper << endl;
|
|
|
|
|
|
2022-04-27 18:21:32 +02:00
|
|
|
|
// ping
|
|
|
|
|
// if ping cmd
|
|
|
|
|
if (helper.getCmd() == PING) {
|
|
|
|
|
ofstream out("/tmp/scex-ping.bin", ofstream::binary);
|
|
|
|
|
if (out.bad()) {
|
|
|
|
|
sif::warning << "bad" << std::endl;
|
|
|
|
|
}
|
|
|
|
|
out << helper;
|
2022-04-26 13:22:56 +02:00
|
|
|
|
}
|
2022-04-27 18:21:32 +02:00
|
|
|
|
// fram
|
|
|
|
|
// packetcounter eins h<>her, wenn mehr packet verloren -> merkt sich welches packet fehlt
|
2022-04-29 12:48:13 +02:00
|
|
|
|
// was wenn erstes packet fehlt; mit boolean var (firstpacketarrived=false) die immer mit
|
|
|
|
|
// finish false wird?
|
2022-04-27 18:21:32 +02:00
|
|
|
|
// countdown (max 2min), wenn nicht if (helper.getPacketCounter() ==
|
|
|
|
|
// helper.getTotalPacketCounter()) { nach 2min reader->finish();
|
|
|
|
|
if (helper.getCmd() == FRAM) {
|
2022-04-29 12:48:13 +02:00
|
|
|
|
if (not fileNameSet) {
|
|
|
|
|
fileId = gen_random(12);
|
|
|
|
|
fileName = "/tmp/scex-fram_" + fileId + ".bin";
|
|
|
|
|
fileNameSet = true;
|
|
|
|
|
}
|
2022-04-27 18:21:32 +02:00
|
|
|
|
if (helper.getPacketCounter() == 1) {
|
2022-04-29 12:48:13 +02:00
|
|
|
|
// countdown starten
|
|
|
|
|
finishCountdown.resetTimer();
|
2022-04-29 12:26:18 +02:00
|
|
|
|
ofstream out(fileName,
|
|
|
|
|
ofstream::binary); // neues file anlegen
|
2022-04-27 18:21:32 +02:00
|
|
|
|
} else {
|
2022-04-29 12:26:18 +02:00
|
|
|
|
ofstream out(fileName,
|
|
|
|
|
ofstream::binary | ofstream::app); // an bestehendes file appenden
|
2022-04-27 18:21:32 +02:00
|
|
|
|
out << helper;
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-29 12:48:13 +02:00
|
|
|
|
if (finishCountdown.hasTimedOut()) {
|
|
|
|
|
reader->finish();
|
|
|
|
|
sif::warning << "Reader countdown expired" << endl;
|
|
|
|
|
cmdDone = true;
|
|
|
|
|
fileNameSet = false;
|
2022-04-27 18:21:32 +02:00
|
|
|
|
}
|
2022-04-15 01:39:47 +02:00
|
|
|
|
}
|
2022-04-21 19:47:09 +02:00
|
|
|
|
|
|
|
|
|
if (helper.getPacketCounter() == helper.getTotalPacketCounter()) {
|
2022-04-15 01:39:47 +02:00
|
|
|
|
reader->finish();
|
|
|
|
|
sif::info << "Reader is finished" << endl;
|
|
|
|
|
cmdDone = true;
|
2022-04-29 12:48:13 +02:00
|
|
|
|
fileNameSet = false;
|
2022-04-21 19:47:09 +02:00
|
|
|
|
if (helper.getCmd() == scex::ScexCmds::PING) {
|
|
|
|
|
cmdSent = false;
|
2022-04-29 12:48:13 +02:00
|
|
|
|
fileNameSet = true; // to not generate everytime new file
|
2022-04-21 19:47:09 +02:00
|
|
|
|
}
|
2022-04-15 01:39:47 +02:00
|
|
|
|
}
|
2022-04-27 18:21:32 +02:00
|
|
|
|
} while (len > 0);
|
2022-04-15 01:39:47 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2022-02-04 17:48:05 +01:00
|
|
|
|
}
|
2022-02-22 20:13:16 +01:00
|
|
|
|
|
2022-04-08 21:16:02 +02:00
|
|
|
|
void UartTestClass::scexSimpleInit() {
|
|
|
|
|
#if defined(RASPBERRY_PI)
|
2022-04-15 01:39:47 +02:00
|
|
|
|
std::string devname = "/dev/serial0";
|
2022-04-08 21:16:02 +02:00
|
|
|
|
#else
|
2022-04-15 01:39:47 +02:00
|
|
|
|
std::string devname = "/dev/ul-scex";
|
2022-04-08 21:16:02 +02:00
|
|
|
|
#endif
|
2022-04-15 01:39:47 +02:00
|
|
|
|
/* Get file descriptor */
|
|
|
|
|
serialPort = open(devname.c_str(), O_RDWR);
|
|
|
|
|
if (serialPort < 0) {
|
|
|
|
|
sif::warning << "open call failed with error [" << errno << ", " << strerror(errno)
|
|
|
|
|
<< std::endl;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
// Setting up UART parameters
|
|
|
|
|
tty.c_cflag &= ~PARENB; // Clear parity bit
|
|
|
|
|
tty.c_cflag &= ~CSTOPB; // Clear stop field, only one stop bit used in communication
|
|
|
|
|
tty.c_cflag &= ~CSIZE; // Clear all the size bits
|
|
|
|
|
tty.c_cflag |= CS8; // 8 bits per byte
|
|
|
|
|
tty.c_cflag &= ~CRTSCTS; // Disable RTS/CTS hardware flow control
|
|
|
|
|
tty.c_cflag |= CREAD | CLOCAL; // Turn on READ & ignore ctrl lines (CLOCAL = 1)
|
2022-04-08 21:16:02 +02:00
|
|
|
|
|
2022-04-15 01:39:47 +02:00
|
|
|
|
// Use non-canonical mode and clear echo flag
|
|
|
|
|
tty.c_lflag &= ~(ICANON | ECHO);
|
2022-04-08 21:16:02 +02:00
|
|
|
|
|
2022-04-15 01:39:47 +02:00
|
|
|
|
// Non-blocking mode, read until either line is 0.1 second idle or maximum of 255 bytes are
|
|
|
|
|
// received in one go
|
|
|
|
|
tty.c_cc[VTIME] = 0; // In units of 0.1 seconds
|
|
|
|
|
tty.c_cc[VMIN] = 0; // Read up to 255 bytes
|
2022-04-08 21:16:02 +02:00
|
|
|
|
|
2022-04-15 01:39:47 +02:00
|
|
|
|
// Q7S UART Lite has fixed baud rate. For other linux systems, set baud rate here.
|
2022-04-08 21:16:02 +02:00
|
|
|
|
#if !defined(XIPHOS_Q7S)
|
2022-04-15 01:39:47 +02:00
|
|
|
|
if (cfsetispeed(&tty, B57600) != 0) {
|
|
|
|
|
sif::warning << "UartTestClass::scexInit: Setting baud rate failed" << std::endl;
|
|
|
|
|
}
|
2022-04-08 21:16:02 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
2022-04-15 01:39:47 +02:00
|
|
|
|
if (tcsetattr(serialPort, TCSANOW, &tty) != 0) {
|
|
|
|
|
sif::warning << "tcsetattr call failed with error [" << errno << ", " << strerror(errno)
|
|
|
|
|
<< std::endl;
|
|
|
|
|
}
|
|
|
|
|
// Flush received and unread data
|
|
|
|
|
tcflush(serialPort, TCIOFLUSH);
|
2022-04-08 21:16:02 +02:00
|
|
|
|
}
|
2022-04-09 01:00:42 +02:00
|
|
|
|
|
|
|
|
|
void UartTestClass::scexSimplePeriodic() {
|
2022-04-15 01:39:47 +02:00
|
|
|
|
using namespace scex;
|
|
|
|
|
ReturnValue_t result = RETURN_OK;
|
|
|
|
|
if (not cmdSent) {
|
|
|
|
|
// Flush received and unread data
|
|
|
|
|
tcflush(serialPort, TCIFLUSH);
|
|
|
|
|
uint8_t tmpCmdBuf[32] = {};
|
|
|
|
|
size_t len = 0;
|
|
|
|
|
sif::info << "UartTestClass::scexSimplePeriodic: Sending command to SCEX" << std::endl;
|
|
|
|
|
prepareScexCmd(currCmd, false, tmpCmdBuf, &len);
|
|
|
|
|
result = dleEncoder.encode(tmpCmdBuf, len, cmdBuf.data(), cmdBuf.size(), &encodedLen, true);
|
|
|
|
|
if (result != HasReturnvaluesIF::RETURN_OK) {
|
|
|
|
|
sif::warning << "UartTestClass::scexInit: Encoding failed" << std::endl;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (result != 0) {
|
|
|
|
|
return;
|
|
|
|
|
};
|
|
|
|
|
size_t bytesWritten = write(serialPort, cmdBuf.data(), encodedLen);
|
|
|
|
|
if (bytesWritten != encodedLen) {
|
|
|
|
|
sif::warning << "Sending command to solar experiment failed" << std::endl;
|
|
|
|
|
}
|
|
|
|
|
cmdSent = true;
|
|
|
|
|
cmdDone = false;
|
|
|
|
|
}
|
|
|
|
|
if (not cmdDone) {
|
|
|
|
|
// Read back reply immediately
|
|
|
|
|
int bytesRead = 0;
|
|
|
|
|
do {
|
|
|
|
|
bytesRead = read(serialPort, reinterpret_cast<void*>(recBuf.data()),
|
|
|
|
|
static_cast<unsigned int>(recBuf.size()));
|
|
|
|
|
if (bytesRead == 0) {
|
|
|
|
|
sif::warning << "Reading SCEX: Timeout or no bytes read" << std::endl;
|
|
|
|
|
} else if (bytesRead < 0) {
|
|
|
|
|
sif::warning << "UartTestClass::performPeriodicAction: read call failed with error ["
|
|
|
|
|
<< errno << ", " << strerror(errno) << "]" << std::endl;
|
|
|
|
|
break;
|
|
|
|
|
} else if (bytesRead >= static_cast<int>(recBuf.size())) {
|
2022-04-27 18:21:32 +02:00
|
|
|
|
sif::debug << "UartTestClass::performPeriodicAction: recv buffer might not be large "
|
|
|
|
|
"enough, bytes read:"
|
|
|
|
|
<< bytesRead << std::endl;
|
2022-04-15 01:39:47 +02:00
|
|
|
|
} else if (bytesRead > 0) {
|
|
|
|
|
dleParser->passData(recBuf.data(), bytesRead);
|
|
|
|
|
if (currCmd == ScexCmds::PING) {
|
|
|
|
|
cmdDone = true;
|
|
|
|
|
cmdSent = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} while (bytesRead > 0);
|
|
|
|
|
}
|
2022-04-09 14:43:06 +02:00
|
|
|
|
}
|
2022-04-09 01:00:42 +02:00
|
|
|
|
|
2022-04-09 14:43:06 +02:00
|
|
|
|
int UartTestClass::prepareScexCmd(scex::ScexCmds cmd, bool tempCheck, uint8_t* cmdBuf,
|
2022-04-15 01:39:47 +02:00
|
|
|
|
size_t* len) {
|
|
|
|
|
using namespace scex;
|
2022-04-26 13:22:56 +02:00
|
|
|
|
// Send command
|
2022-04-15 01:39:47 +02:00
|
|
|
|
cmdBuf[0] = scex::createCmdByte(cmd, false);
|
|
|
|
|
// These two fields are the packet counter and the total packet count. Those are 1 and 1 for each
|
|
|
|
|
// telecommand so far
|
|
|
|
|
cmdBuf[1] = 1;
|
|
|
|
|
cmdBuf[2] = 1;
|
|
|
|
|
uint16_t userDataLen = 0;
|
|
|
|
|
cmdBuf[3] = (userDataLen >> 8) & 0xff;
|
|
|
|
|
cmdBuf[4] = userDataLen & 0xff;
|
|
|
|
|
uint16_t crc = CRC::crc16ccitt(cmdBuf, 5);
|
|
|
|
|
cmdBuf[5] = (crc >> 8) & 0xff;
|
|
|
|
|
cmdBuf[6] = crc & 0xff;
|
|
|
|
|
*len = 7;
|
|
|
|
|
return 0;
|
2022-04-09 14:43:06 +02:00
|
|
|
|
}
|
|
|
|
|
|
2022-04-09 15:38:09 +02:00
|
|
|
|
void UartTestClass::foundDlePacketHandler(const DleParser::Context& ctx) {
|
2022-04-15 01:39:47 +02:00
|
|
|
|
UartTestClass* obj = reinterpret_cast<UartTestClass*>(ctx.userArgs);
|
|
|
|
|
if (ctx.getType() == DleParser::ContextType::PACKET_FOUND) {
|
|
|
|
|
obj->handleFoundDlePacket(ctx.decodedPacket.first, ctx.decodedPacket.second);
|
|
|
|
|
} else {
|
|
|
|
|
DleParser::defaultErrorHandler(ctx.error.first, ctx.error.second);
|
|
|
|
|
}
|
2022-04-09 14:43:06 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void UartTestClass::handleFoundDlePacket(uint8_t* packet, size_t len) {
|
2022-04-15 01:39:47 +02:00
|
|
|
|
sif::info << "Detected DLE encoded packet with decoded size " << len << std::endl;
|
2022-04-09 01:00:42 +02:00
|
|
|
|
}
|
2022-04-29 12:26:18 +02:00
|
|
|
|
|
2022-04-29 12:30:52 +02:00
|
|
|
|
std::string UartTestClass::gen_random(const int len) {
|
2022-04-29 12:48:13 +02:00
|
|
|
|
static const char alphanum[] =
|
|
|
|
|
"0123456789"
|
|
|
|
|
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
|
|
|
|
"abcdefghijklmnopqrstuvwxyz";
|
2022-04-29 12:26:18 +02:00
|
|
|
|
|
2022-04-29 12:48:13 +02:00
|
|
|
|
std::string tmp_s;
|
|
|
|
|
tmp_s.reserve(len);
|
2022-04-29 12:26:18 +02:00
|
|
|
|
|
2022-04-29 12:48:13 +02:00
|
|
|
|
for (int i = 0; i < len; ++i) {
|
|
|
|
|
tmp_s += alphanum[rand() % (sizeof(alphanum) - 1)];
|
|
|
|
|
}
|
2022-04-29 12:26:18 +02:00
|
|
|
|
|
2022-04-29 12:48:13 +02:00
|
|
|
|
return tmp_s;
|
2022-04-29 12:26:18 +02:00
|
|
|
|
}
|