diff --git a/src/DebugToolDrivers/Protocols/CMSIS-DAP/VendorSpecific/EDBG/AVR/AvrEvent.cpp b/src/DebugToolDrivers/Protocols/CMSIS-DAP/VendorSpecific/EDBG/AVR/AvrEvent.cpp index 7a82ca62..2fde3a42 100644 --- a/src/DebugToolDrivers/Protocols/CMSIS-DAP/VendorSpecific/EDBG/AVR/AvrEvent.cpp +++ b/src/DebugToolDrivers/Protocols/CMSIS-DAP/VendorSpecific/EDBG/AVR/AvrEvent.cpp @@ -31,8 +31,8 @@ namespace Bloom::DebugToolDrivers::Protocols::CmsisDap::Edbg::Avr auto eventData = std::vector(); /* - * Ignore the SOF, protocol version &handler id and sequence ID (with all make up 5 bytes in total, 7 when - * you include the two size bytes) + * Ignore the SOF, protocol version, handler id and sequence ID (which all make up 5 bytes in total, 7 if we + * include the two size bytes) */ eventData.insert( eventData.end(), diff --git a/src/DebugToolDrivers/Protocols/CMSIS-DAP/VendorSpecific/EDBG/AVR/CommandFrames/AvrCommandFrame.hpp b/src/DebugToolDrivers/Protocols/CMSIS-DAP/VendorSpecific/EDBG/AVR/CommandFrames/AvrCommandFrame.hpp index 8cfcb017..2ac6abcc 100644 --- a/src/DebugToolDrivers/Protocols/CMSIS-DAP/VendorSpecific/EDBG/AVR/CommandFrames/AvrCommandFrame.hpp +++ b/src/DebugToolDrivers/Protocols/CMSIS-DAP/VendorSpecific/EDBG/AVR/CommandFrames/AvrCommandFrame.hpp @@ -125,21 +125,21 @@ namespace Bloom::DebugToolDrivers::Protocols::CmsisDap::Edbg::Avr } /** - * AvrCommandFrames are sent to the device via AVRCommands (CMSIS-DAP vendor commands). + * AvrCommandFrames are sent to the device via AvrCommands (CMSIS-DAP vendor commands). * * If the size of an AvrCommandFrame exceeds the maximum packet size of an AVRCommand, it will need to - * be split into multiple AVRCommands before being sent to the device. + * be split into multiple AvrCommands before being sent to the device. * - * This methods generates AVR commands from an AvrCommandFrame. The number of AVRCommands generated depends + * This methods generates AVR commands from an AvrCommandFrame. The number of AvrCommands generated depends * on the size of the AvrCommandFrame and the passed maximumCommandPacketSize. * * @param maximumCommandPacketSize * The maximum size of an AVRCommand command packet. This is usually the REPORT_SIZE of the HID * endpoint, minus a few bytes to account for other AVRCommand fields. The maximumCommandPacketSize is used to - * determine the number of AVRCommands to be generated. + * determine the number of AvrCommands to be generated. * * @return - * A vector of sequenced AVRCommands, each containing a segment of the AvrCommandFrame. + * A vector of sequenced AvrCommands, each containing a segment of the AvrCommandFrame. */ [[nodiscard]] std::vector generateAvrCommands(std::size_t maximumCommandPacketSize) const { auto rawCommandFrame = this->getRawCommandFrame(); diff --git a/src/DebugToolDrivers/Protocols/CMSIS-DAP/VendorSpecific/EDBG/AVR/Events/AVR8Generic/BreakEvent.cpp b/src/DebugToolDrivers/Protocols/CMSIS-DAP/VendorSpecific/EDBG/AVR/Events/AVR8Generic/BreakEvent.cpp index a3de3169..e270b7d7 100644 --- a/src/DebugToolDrivers/Protocols/CMSIS-DAP/VendorSpecific/EDBG/AVR/Events/AVR8Generic/BreakEvent.cpp +++ b/src/DebugToolDrivers/Protocols/CMSIS-DAP/VendorSpecific/EDBG/AVR/Events/AVR8Generic/BreakEvent.cpp @@ -13,7 +13,7 @@ namespace Bloom::DebugToolDrivers::Protocols::CmsisDap::Edbg::Avr if (data.size() < 8) { /* - * All BreakEvent packets must consist of at least 9 bytes: + * All BreakEvent packets must consist of at least 8 bytes: * 1 byte for event ID * 4 bytes for program counter * 1 byte for break cause