aboutsummaryrefslogtreecommitdiffstats
path: root/gui/wxmain.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2021-03-22 16:06:48 -0400
committerClyne Sullivan <clyne@bitgloo.com>2021-03-22 16:06:48 -0400
commit5515642bf804870024633c1ad1887f819880b08c (patch)
tree379535332b4290c7bde9dcb68cfa74c35356baf0 /gui/wxmain.cpp
parent673eba7167483a92b7a2b8fbfadcccc1f9c3c651 (diff)
fix L4 DAC trigger; round buffers to even size
Diffstat (limited to 'gui/wxmain.cpp')
-rw-r--r--gui/wxmain.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/gui/wxmain.cpp b/gui/wxmain.cpp
index 64f36e4..13d7586 100644
--- a/gui/wxmain.cpp
+++ b/gui/wxmain.cpp
@@ -258,8 +258,6 @@ void MainFrame::onPaint(wxPaintEvent&)
dc->SetBrush(*wxBLACK_BRUSH);
dc->SetPen(*wxBLACK_PEN);
dc->DrawRectangle(rect);
- dc->SetBrush(*wxRED_BRUSH);
- dc->SetPen(*wxRED_PEN);
auto stoy = [&](stmdsp::adcsample_t s) {
return static_cast<float>(py) + rect.GetHeight() -
(static_cast<float>(rect.GetHeight()) * s / 4095.f);
@@ -268,15 +266,17 @@ void MainFrame::onPaint(wxPaintEvent&)
float dx = static_cast<float>(rect.GetWidth()) / scount;
float x = 0;
float lasty = stoy(2048);
+ dc->SetBrush(wxBrush(wxColour(0xFF, 0, 0, 0x80)));
+ dc->SetPen(wxPen(wxColour(0xFF, 0, 0, 0x80)));
for (decltype(scount) i = 0; i < scount; i++) {
auto y = stoy(m_device_samples[i]);
dc->DrawLine(x, lasty, x + dx, y);
x += dx, lasty = y;
}
- dc->SetBrush(*wxBLUE_BRUSH);
- dc->SetPen(*wxBLUE_PEN);
x = 0;
lasty = stoy(2048);
+ dc->SetBrush(wxBrush(wxColour(0, 0, 0xFF, 0x80)));
+ dc->SetPen(wxPen(wxColour(0, 0, 0xFF, 0x80)));
for (decltype(scount) i = 0; i < scount; i++) {
auto y = stoy(m_device_samples_input[i]);
dc->DrawLine(x, lasty, x + dx, y);