Moving ResponseId enum for the HOUSEKEEPING EDBG protocol out of the command frame class header.

This commit is contained in:
Nav
2022-03-01 20:25:16 +00:00
parent 8c3d49df79
commit 15f22b612f
11 changed files with 31 additions and 23 deletions

View File

@@ -71,6 +71,7 @@ namespace Bloom::DebugToolDrivers
void AtmelIce::startSession() {
using namespace CommandFrames::HouseKeeping;
using ResponseFrames::HouseKeeping::ResponseId;
auto response = this->getEdbgInterface().sendAvrCommandFrameAndWaitForResponseFrame(
StartSession()
@@ -86,6 +87,7 @@ namespace Bloom::DebugToolDrivers
void AtmelIce::endSession() {
using namespace CommandFrames::HouseKeeping;
using ResponseFrames::HouseKeeping::ResponseId;
auto response = this->getEdbgInterface().sendAvrCommandFrameAndWaitForResponseFrame(
EndSession()

View File

@@ -63,6 +63,7 @@ namespace Bloom::DebugToolDrivers
void CuriosityNano::startSession() {
using namespace CommandFrames::HouseKeeping;
using ResponseFrames::HouseKeeping::ResponseId;
auto response = this->getEdbgInterface().sendAvrCommandFrameAndWaitForResponseFrame(
StartSession()
@@ -78,6 +79,7 @@ namespace Bloom::DebugToolDrivers
void CuriosityNano::endSession() {
using namespace CommandFrames::HouseKeeping;
using ResponseFrames::HouseKeeping::ResponseId;
auto response = this->getEdbgInterface().sendAvrCommandFrameAndWaitForResponseFrame(
EndSession()

View File

@@ -64,6 +64,7 @@ namespace Bloom::DebugToolDrivers
void MplabPickit4::startSession() {
using namespace CommandFrames::HouseKeeping;
using ResponseFrames::HouseKeeping::ResponseId;
auto response = this->getEdbgInterface().sendAvrCommandFrameAndWaitForResponseFrame(
StartSession()
@@ -79,6 +80,7 @@ namespace Bloom::DebugToolDrivers
void MplabPickit4::endSession() {
using namespace CommandFrames::HouseKeeping;
using ResponseFrames::HouseKeeping::ResponseId;
auto response = this->getEdbgInterface().sendAvrCommandFrameAndWaitForResponseFrame(
EndSession()

View File

@@ -63,6 +63,7 @@ namespace Bloom::DebugToolDrivers
void MplabSnap::startSession() {
using namespace CommandFrames::HouseKeeping;
using ResponseFrames::HouseKeeping::ResponseId;
auto response = this->getEdbgInterface().sendAvrCommandFrameAndWaitForResponseFrame(
StartSession()
@@ -78,6 +79,7 @@ namespace Bloom::DebugToolDrivers
void MplabSnap::endSession() {
using namespace CommandFrames::HouseKeeping;
using ResponseFrames::HouseKeeping::ResponseId;
auto response = this->getEdbgInterface().sendAvrCommandFrameAndWaitForResponseFrame(
EndSession()

View File

@@ -69,6 +69,7 @@ namespace Bloom::DebugToolDrivers
void PowerDebugger::startSession() {
using namespace CommandFrames::HouseKeeping;
using ResponseFrames::HouseKeeping::ResponseId;
auto response = this->getEdbgInterface().sendAvrCommandFrameAndWaitForResponseFrame(
StartSession()
@@ -86,6 +87,7 @@ namespace Bloom::DebugToolDrivers
void PowerDebugger::endSession() {
using namespace CommandFrames::HouseKeeping;
using ResponseFrames::HouseKeeping::ResponseId;
auto response = this->getEdbgInterface().sendAvrCommandFrameAndWaitForResponseFrame(
EndSession()

View File

@@ -63,6 +63,7 @@ namespace Bloom::DebugToolDrivers
void XplainedMini::startSession() {
using namespace CommandFrames::HouseKeeping;
using ResponseFrames::HouseKeeping::ResponseId;
auto response = this->getEdbgInterface().sendAvrCommandFrameAndWaitForResponseFrame(
StartSession()
@@ -78,6 +79,7 @@ namespace Bloom::DebugToolDrivers
void XplainedMini::endSession() {
using namespace CommandFrames::HouseKeeping;
using ResponseFrames::HouseKeeping::ResponseId;
auto response = this->getEdbgInterface().sendAvrCommandFrameAndWaitForResponseFrame(
EndSession()

View File

@@ -63,6 +63,7 @@ namespace Bloom::DebugToolDrivers
void XplainedNano::startSession() {
using namespace CommandFrames::HouseKeeping;
using ResponseFrames::HouseKeeping::ResponseId;
auto response = this->getEdbgInterface().sendAvrCommandFrameAndWaitForResponseFrame(
StartSession()
@@ -78,6 +79,7 @@ namespace Bloom::DebugToolDrivers
void XplainedNano::endSession() {
using namespace CommandFrames::HouseKeeping;
using ResponseFrames::HouseKeeping::ResponseId;
auto response = this->getEdbgInterface().sendAvrCommandFrameAndWaitForResponseFrame(
EndSession()

View File

@@ -72,6 +72,7 @@ namespace Bloom::DebugToolDrivers
void XplainedPro::startSession() {
using namespace CommandFrames::HouseKeeping;
using ResponseFrames::HouseKeeping::ResponseId;
auto response = this->getEdbgInterface().sendAvrCommandFrameAndWaitForResponseFrame(
StartSession()
@@ -87,6 +88,7 @@ namespace Bloom::DebugToolDrivers
void XplainedPro::endSession() {
using namespace CommandFrames::HouseKeeping;
using ResponseFrames::HouseKeeping::ResponseId;
auto response = this->getEdbgInterface().sendAvrCommandFrameAndWaitForResponseFrame(
EndSession()