Tidying/consistency of includes

This commit is contained in:
Nav
2021-10-02 17:39:27 +01:00
parent fc6d7dfc51
commit df6b94b0de
27 changed files with 51 additions and 29 deletions

View File

@@ -1,6 +1,7 @@
#include "src/Exceptions/Exception.hpp"
#include "Response.hpp"
#include "src/Exceptions/Exception.hpp"
using namespace Bloom::DebugToolDrivers::Protocols::CmsisDap;
void Response::init(const std::vector<unsigned char>& rawResponse) {

View File

@@ -1,4 +1,5 @@
#include "AvrEvent.hpp"
#include "src/Exceptions/Exception.hpp"
using namespace Bloom::DebugToolDrivers::Protocols::CmsisDap::Edbg::Avr;

View File

@@ -1,6 +1,7 @@
#include "AvrResponse.hpp"
#include <cstdint>
#include "AvrResponse.hpp"
#include "src/Exceptions/Exception.hpp"
using namespace Bloom::DebugToolDrivers::Protocols::CmsisDap::Edbg::Avr;
@@ -40,4 +41,3 @@ void AvrResponse::init(const std::vector<unsigned char>& rawResponse) {
this->setResponsePacket(responsePacket);
}

View File

@@ -1,7 +1,7 @@
#include <math.h>
#include "AvrCommandFrame.hpp"
#include <math.h>
using namespace Bloom::DebugToolDrivers::Protocols::CmsisDap::Edbg::Avr;
std::vector<AvrCommand> AvrCommandFrame::generateAvrCommands(std::size_t maximumCommandPacketSize) const {

View File

@@ -1,6 +1,7 @@
#include "BreakEvent.hpp"
#include <cstdint>
#include "BreakEvent.hpp"
#include "src/Exceptions/Exception.hpp"
using namespace Bloom::DebugToolDrivers::Protocols::CmsisDap::Edbg::Avr;

View File

@@ -1,6 +1,7 @@
#include "AvrResponseFrame.hpp"
#include <cstdint>
#include "AvrResponseFrame.hpp"
#include "src/Exceptions/Exception.hpp"
using namespace Bloom::DebugToolDrivers::Protocols::CmsisDap::Edbg::Avr;