Skip to content

Commit 0aa3ae7

Browse files
committed
Blast data log count
1 parent 2ec2945 commit 0aa3ae7

3 files changed

Lines changed: 4 additions & 92 deletions

File tree

app/backplane/power_module/.idea/editor.xml

Lines changed: 4 additions & 88 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/backplane/sensor_module/include/c_sensing_tenant.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ class CSensingTenant : public CTenant {
4747
CRtc rtc{*DEVICE_DT_GET(DT_ALIAS(rtc))};
4848

4949
void sendDownlinkData(const NTypes::SensorData &data);
50-
uint64_t dataCount = 0;
5150
};
5251

5352
#endif // C_SENSING_TENANT_H

app/backplane/sensor_module/src/c_sensing_tenant.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,6 @@ void CSensingTenant::Run() {
113113
int ret = dataToLog.Send(timestampedData, K_NO_WAIT);
114114
if (ret) {
115115
LOG_ERR("Failed to send sensor data to log port");
116-
} else {
117-
dataCount++;
118116
}
119117

120118
LOG_WRN_ONCE("Beginning logging");
@@ -127,7 +125,6 @@ void CSensingTenant::Run() {
127125
// Don't care about performance at this point,
128126
// Keep making sure the data gets logged
129127
if (detectionHandler.FlightFinished()) {
130-
LOG_INF("%llu", dataCount);
131128
NRtos::ResumeTask("Data Logging Task");
132129
k_msleep(1000);
133130
}

0 commit comments

Comments
 (0)