More tidying
This commit is contained in:
@@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
namespace Bloom::DebugToolDrivers::Protocols::CmsisDap::Edbg::Avr::CommandFrames::HouseKeeping
|
namespace Bloom::DebugToolDrivers::Protocols::CmsisDap::Edbg::Avr::CommandFrames::HouseKeeping
|
||||||
{
|
{
|
||||||
enum class ParameterContext : unsigned char
|
enum class ParameterContext: unsigned char
|
||||||
{
|
{
|
||||||
CONFIG = 0x00,
|
CONFIG = 0x00,
|
||||||
ANALOG = 0x01,
|
ANALOG = 0x01,
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
namespace Bloom::DebugToolDrivers::Protocols::CmsisDap::Edbg::Avr::ResponseFrames::HouseKeeping
|
namespace Bloom::DebugToolDrivers::Protocols::CmsisDap::Edbg::Avr::ResponseFrames::HouseKeeping
|
||||||
{
|
{
|
||||||
enum class ResponseId : unsigned char
|
enum class ResponseId: unsigned char
|
||||||
{
|
{
|
||||||
OK = 0x80,
|
OK = 0x80,
|
||||||
LIST = 0x81,
|
LIST = 0x81,
|
||||||
|
|||||||
@@ -11,7 +11,9 @@ namespace Bloom::Widgets
|
|||||||
MemoryRegionDataType dataType = MemoryRegionDataType::UNKNOWN;
|
MemoryRegionDataType dataType = MemoryRegionDataType::UNKNOWN;
|
||||||
|
|
||||||
DataTypeOption(const QString& text, MemoryRegionDataType dataType)
|
DataTypeOption(const QString& text, MemoryRegionDataType dataType)
|
||||||
: text(text), dataType(dataType) {};
|
: text(text)
|
||||||
|
, dataType(dataType)
|
||||||
|
{};
|
||||||
};
|
};
|
||||||
|
|
||||||
struct EndiannessOption
|
struct EndiannessOption
|
||||||
@@ -20,7 +22,9 @@ namespace Bloom::Widgets
|
|||||||
Targets::TargetMemoryEndianness endianness = Targets::TargetMemoryEndianness::LITTLE;
|
Targets::TargetMemoryEndianness endianness = Targets::TargetMemoryEndianness::LITTLE;
|
||||||
|
|
||||||
EndiannessOption(const QString& text, Targets::TargetMemoryEndianness endianness)
|
EndiannessOption(const QString& text, Targets::TargetMemoryEndianness endianness)
|
||||||
: text(text), endianness(endianness) {};
|
: text(text)
|
||||||
|
, endianness(endianness)
|
||||||
|
{};
|
||||||
};
|
};
|
||||||
|
|
||||||
class FocusedRegionItem: public RegionItem
|
class FocusedRegionItem: public RegionItem
|
||||||
|
|||||||
Reference in New Issue
Block a user