Skip to content
Snippets Groups Projects
Commit 30a26c52 authored by Zach Eisele's avatar Zach Eisele
Browse files

add test stand data to logging

parent 55399f2c
No related branches found
No related tags found
1 merge request!77Groundstation gui rough edits
...@@ -249,8 +249,6 @@ class CCrazyflie { ...@@ -249,8 +249,6 @@ class CCrazyflie {
bool readTOCParameters(); bool readTOCParameters();
bool readTOCLogs(); bool readTOCLogs();
serial::Serial * test_stand;
/*! \brief Send a set point to the copter controller /*! \brief Send a set point to the copter controller
Send the set point for the internal copter controllers. The Send the set point for the internal copter controllers. The
...@@ -295,6 +293,7 @@ class CCrazyflie { ...@@ -295,6 +293,7 @@ class CCrazyflie {
CTOC *m_tocParameters; CTOC *m_tocParameters;
CTOC *m_tocLogs; CTOC *m_tocLogs;
int testStandError = 0; int testStandError = 0;
serial::Serial * test_stand;
CCrazyflie(CCrazyRadio *crRadio, int radioChannel, XferRate dataRate, int quadNum, double startTime); CCrazyflie(CCrazyRadio *crRadio, int radioChannel, XferRate dataRate, int quadNum, double startTime);
/*! \brief Destructor for the copter convenience class /*! \brief Destructor for the copter convenience class
......
...@@ -117,6 +117,7 @@ void CCrazyflie::writeLogData() { ...@@ -117,6 +117,7 @@ void CCrazyflie::writeLogData() {
for(int i = 0; i < m_tocLogs->sizeOfActiveList(); i++) { for(int i = 0; i < m_tocLogs->sizeOfActiveList(); i++) {
file_log << "\t" << this->sensorDoubleValue(m_tocLogs->activeLogName(i)); file_log << "\t" << this->sensorDoubleValue(m_tocLogs->activeLogName(i));
} }
file_log << "\t" << this->sensorDoubleValue("testStand");
} }
...@@ -238,7 +239,13 @@ double CCrazyflie::readTestStand() { ...@@ -238,7 +239,13 @@ double CCrazyflie::readTestStand() {
} }
*/ */
std::string result = ""; std::string result = "";
//usleep(5);
this->test_stand->readline();
result = this->test_stand->readline(); result = this->test_stand->readline();
this->test_stand->flushInput();
double value; double value;
try { try {
value = std::stod(result); value = std::stod(result);
......
...@@ -23,7 +23,7 @@ void CCrazyRadio::mainLoop() { ...@@ -23,7 +23,7 @@ void CCrazyRadio::mainLoop() {
(*it)->writeLogData(); (*it)->writeLogData();
} }
usleep(1000); usleep(500);
// Check if the thread has been told to terminate // Check if the thread has been told to terminate
if (this->m_exitThread) { if (this->m_exitThread) {
......
...@@ -192,13 +192,9 @@ int main(int argc, char** argv) { ...@@ -192,13 +192,9 @@ int main(int argc, char** argv) {
{ {
serial::PortInfo device = *iter++; serial::PortInfo device = *iter++;
if(device.hardware_id.compare("n/a")) { if(!device.port.compare("/dev/ttyUSB0")) {
cout << "Port found, do you want to use " << device.port << ": " << device.description << " as your serial input to the ground station? y or n" << endl; selectedPort = device.port;
char response = getchar(); break;
if(response == 'y') {
selectedPort = device.port;
break;
}
} }
} }
...@@ -498,6 +494,7 @@ void closeoutProgram() { ...@@ -498,6 +494,7 @@ void closeoutProgram() {
cout << "\tBattery" << ": " << crazyflie_info[i].cflieCopter->batteryLevel() << endl; cout << "\tBattery" << ": " << crazyflie_info[i].cflieCopter->batteryLevel() << endl;
crazyflie_info[i].cflieCopter->cycle(); crazyflie_info[i].cflieCopter->cycle();
crazyflie_info[i].cflieCopter->resetLoggingBlocks(); crazyflie_info[i].cflieCopter->resetLoggingBlocks();
crazyflie_info[i].cflieCopter->test_stand->close();
delete crazyflie_info[i].cflieCopter; delete crazyflie_info[i].cflieCopter;
} }
......
...@@ -277,6 +277,7 @@ void CrazyflieWorker::loadLogIds() { ...@@ -277,6 +277,7 @@ void CrazyflieWorker::loadLogIds() {
//top line //top line
std::getline(logTOCFile, line); std::getline(logTOCFile, line);
std::getline(logTOCFile, line); std::getline(logTOCFile, line);
int maxId = -1;
//actual values; //actual values;
while(std::getline(logTOCFile, line)) { while(std::getline(logTOCFile, line)) {
struct toc_info values; struct toc_info values;
...@@ -286,6 +287,9 @@ void CrazyflieWorker::loadLogIds() { ...@@ -286,6 +287,9 @@ void CrazyflieWorker::loadLogIds() {
std::getline(ss, temp_str, '\t'); std::getline(ss, temp_str, '\t');
if(i == 0) { if(i == 0) {
values.id = (int16_t) stoi(temp_str); values.id = (int16_t) stoi(temp_str);
if(values.id > maxId) {
maxId = values.id;
}
} }
else if(i == 1) { else if(i == 1) {
values.dataType = (int8_t) stoi(temp_str); values.dataType = (int8_t) stoi(temp_str);
...@@ -315,6 +319,18 @@ void CrazyflieWorker::loadLogIds() { ...@@ -315,6 +319,18 @@ void CrazyflieWorker::loadLogIds() {
logIds.insert(Qidentifier, values); logIds.insert(Qidentifier, values);
} }
logTOCFile.close(); logTOCFile.close();
struct toc_group testGroup;
testGroup.groupName = "MicroCARTTest";
testGroup.entryNames.push_back("stand");
logGroups.push_back(testGroup);
struct toc_info testStand;
testStand.id = maxId+1;
testStand.dataType = 9;
testStand.strGroup = "MicroCARTTest";
testStand.strName = "stand";
std::string Midentifier = testStand.strGroup + "." + testStand.strName;
QString MQidentifier(Midentifier.c_str());
logIds.insert(MQidentifier, testStand);
} }
int CrazyflieWorker::findParamGroup(std::string gName) { int CrazyflieWorker::findParamGroup(std::string gName) {
...@@ -422,6 +438,7 @@ void CrazyflieWorker::loadLogBlocks() { ...@@ -422,6 +438,7 @@ void CrazyflieWorker::loadLogBlocks() {
int blockLinesRead = 0; int blockLinesRead = 0;
struct logBlock cur; struct logBlock cur;
std::string entryName; std::string entryName;
int maxId = -1;
while(getline(blockFile, line)) { while(getline(blockFile, line)) {
if(!line.compare("START BLOCK")) { if(!line.compare("START BLOCK")) {
...@@ -430,6 +447,9 @@ void CrazyflieWorker::loadLogBlocks() { ...@@ -430,6 +447,9 @@ void CrazyflieWorker::loadLogBlocks() {
} }
else if(!line.compare("END BLOCK")) { else if(!line.compare("END BLOCK")) {
cur.isEnabled = true; cur.isEnabled = true;
if(cur.id > maxId) {
maxId = cur.id;
}
logBlocks.push_back(cur); logBlocks.push_back(cur);
blockLinesRead = 0; blockLinesRead = 0;
cur.id = -1; cur.id = -1;
...@@ -496,6 +516,13 @@ void CrazyflieWorker::loadLogBlocks() { ...@@ -496,6 +516,13 @@ void CrazyflieWorker::loadLogBlocks() {
} }
} }
blockFile.close(); blockFile.close();
struct logBlock stand;
stand.id = maxId+1;
stand.blockName = "MicroCART";
stand.isEnabled = true;
struct toc_info standInfo = tocElementForName("MicroCARTTest.stand");
stand.variableNames.push_back(standInfo);
logBlocks.push_back(stand);
} }
void CrazyflieWorker::findLogBlockID(QString name, int8_t command) { void CrazyflieWorker::findLogBlockID(QString name, int8_t command) {
...@@ -563,6 +590,7 @@ std::vector<int8_t> CrazyflieWorker::getLogColumns(QString log1, QString log2, Q ...@@ -563,6 +590,7 @@ std::vector<int8_t> CrazyflieWorker::getLogColumns(QString log1, QString log2, Q
struct toc_info teCurrent = lbCurrent.variableNames.at(j); struct toc_info teCurrent = lbCurrent.variableNames.at(j);
element = teCurrent.strGroup + "." + teCurrent.strName; element = teCurrent.strGroup + "." + teCurrent.strName;
if(!element.compare(log1.toStdString())) { if(!element.compare(log1.toStdString())) {
qInfo() << column;
columns[0] = column; columns[0] = column;
} }
else if(!element.compare(log2.toStdString())) { else if(!element.compare(log2.toStdString())) {
......
...@@ -90,10 +90,13 @@ void LogWorker::startLogging(QString filename) { ...@@ -90,10 +90,13 @@ void LogWorker::startLogging(QString filename) {
wantedLine.append("NULL,"); wantedLine.append("NULL,");
} }
else { else {
qInfo() << "append";
wantedLine.append(tokens.at(logColumns.at(i)).c_str()); wantedLine.append(tokens.at(logColumns.at(i)).c_str());
wantedLine.append(","); wantedLine.append(",");
qInfo() << "append2";
} }
} }
qInfo() << "results";
results.append(wantedLine); results.append(wantedLine);
wantedLine = ""; wantedLine = "";
tokens.clear(); tokens.clear();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment