diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-10-10 09:48:31 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-10-10 09:48:31 -0400 |
commit | d7cd899653531ac5a8def9e9697b0d65b438b773 (patch) | |
tree | 0ae570693a9f549b940f7672bbdf69b710d48ee2 /firmware/source/communication.cpp | |
parent | f3c28dd2f1a27ee8039a86942ccd2277fbb4102e (diff) |
Diffstat (limited to 'firmware/source/communication.cpp')
-rw-r--r-- | firmware/source/communication.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/source/communication.cpp b/firmware/source/communication.cpp index e85828b..8a9f86e 100644 --- a/firmware/source/communication.cpp +++ b/firmware/source/communication.cpp @@ -223,7 +223,7 @@ void sampleRate(unsigned char *cmd) { if (EM.assert(USBSerial::read(&cmd[1], 1) == 1, Error::BadParamSize)) { if (cmd[1] == 0xFF) { - unsigned char r = SClock::getRate(); + auto r = static_cast<unsigned char>(SClock::getRate()); USBSerial::write(&r, 1); } else { auto r = static_cast<SClock::Rate>(cmd[1]); |