Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

regtools: fix several bugs in qeditor

Change-Id: I1bef76d30eb47c4ebc8a2baca356d9c135b234ae

+6 -4
+6 -3
utils/regtools/qeditor/std_analysers.cpp
··· 303 303 EmiAnalyser::EmiAnalyser(const soc_t& soc, IoBackend *backend) 304 304 :Analyser(soc, backend) 305 305 { 306 + m_display_mode = DisplayCycles; 306 307 m_group = new QGroupBox("EMI Analyser"); 307 308 QVBoxLayout *layout = new QVBoxLayout; 308 309 m_group->setLayout(layout); ··· 347 348 348 349 void EmiAnalyser::OnChangeDisplayMode(int index) 349 350 { 351 + if(index == -1) 352 + return; 350 353 m_display_mode = (DisplayMode)m_display_selector->itemData(index).toInt(); 351 354 int idx = m_panel->currentIndex(); 352 355 FillTable(); ··· 492 495 if(helper.ReadRegisterField("DRAM", "CTL10", "ADDR_PINS", value)) 493 496 AddLine("Address Pins", 13 - value, ""); 494 497 495 - if(helper.ReadRegisterField("DRAM", "CTL11", "ADDR_PINS", value)) 498 + if(helper.ReadRegisterField("DRAM", "CTL11", "COLUMN_SIZE", value)) 496 499 AddLine("Column Size", 12 - value, "-bit"); 497 500 498 - if(helper.ReadRegisterField("DRAM", "CTL11", "ADDR_PINS", value)) 499 - AddLine("Encoded CAS", value, "Memory device dependent"); 501 + if(helper.ReadRegisterField("DRAM", "CTL11", "CASLAT", value)) 502 + AddLine("Encoded CAS", value, "", "Memory device dependent"); 500 503 501 504 if(helper.ReadRegisterField("DRAM", "CTL14", "CS_MAP", value)) 502 505 {
-1
utils/regtools/qeditor/std_analysers.h
··· 14 14 #include <QLabel> 15 15 #include <QLineEdit> 16 16 #include "analyser.h" 17 - #include "collapsiblepanel.h" 18 17 19 18 /** 20 19 * Clock analyser