aboutsummaryrefslogtreecommitdiffstats
path: root/source/communication.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2021-10-05 13:58:27 -0400
committerClyne Sullivan <clyne@bitgloo.com>2021-10-05 13:58:27 -0400
commitb430a38ce5674b319ef9bf1c6e773c9eb33f1542 (patch)
tree1a464b08b0ac923b421b518ae6e8bc69fd3b772b /source/communication.cpp
parent555749ef5dde558f745f0dc6d00a168d3b3e9d58 (diff)
algorithm load fix
Diffstat (limited to 'source/communication.cpp')
-rw-r--r--source/communication.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/communication.cpp b/source/communication.cpp
index 3a264fb..ec02a42 100644
--- a/source/communication.cpp
+++ b/source/communication.cpp
@@ -142,8 +142,8 @@ void loadAlgorithm(unsigned char *cmd)
unsigned int size = cmd[1] | (cmd[2] << 8);
if (EM.assert(size < MAX_ELF_FILE_SIZE, Error::BadUserCodeSize)) {
USBSerial::read(ELFManager::fileBuffer(), size);
- auto entry = ELFManager::loadFromInternalBuffer();
- EM.assert(entry != nullptr, Error::BadUserCodeLoad);
+ auto success = ELFManager::loadFromInternalBuffer();
+ EM.assert(success, Error::BadUserCodeLoad);
}
}
}
@@ -214,6 +214,8 @@ void readIdentifier(unsigned char *)
void readExecTime(unsigned char *)
{
+ // Stores the measured execution time.
+ extern time_measurement_t conversion_time_measurement;
USBSerial::write(reinterpret_cast<uint8_t *>(&conversion_time_measurement.last),
sizeof(rtcnt_t));
}