Insight GUI changes:
- New target pinout widgets - Made auto-refresh of registers and GPIO pad states optional (via context menu on refresh tool button)
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
#pragma once
|
||||
|
||||
#include "GpioDirectionLabel.hpp"
|
||||
#include "GpioStateLabel.hpp"
|
||||
#include "GpioDisabledLabel.hpp"
|
||||
|
||||
namespace Widgets::PinoutWidgets
|
||||
{
|
||||
struct PadLabels
|
||||
{
|
||||
GpioDirectionLabel* gpioDirection = nullptr;
|
||||
GpioStateLabel* gpioState = nullptr;
|
||||
GpioDisabledLabel* gpioDisabled = nullptr;
|
||||
|
||||
void disableGpioLabels() const;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user