| 273 | } |
| 274 | |
| 275 | void MainWindow::debugRaise() { |
| 276 | debug_clear_basic_step(); |
| 277 | debugEnable(); |
| 278 | debugPopulate(); |
| 279 | connect(m_shortcutStepIn, &QShortcut::activated, this, &MainWindow::stepIn); |
| 280 | connect(m_shortcutStepOver, &QShortcut::activated, this, &MainWindow::stepOver); |
| 281 | connect(m_shortcutStepNext, &QShortcut::activated, this, &MainWindow::stepNext); |
| 282 | connect(m_shortcutStepOut, &QShortcut::activated, this, &MainWindow::stepOut); |
| 283 | ui->lcd->disableBlend(); |
| 284 | } |
| 285 | |
| 286 | void MainWindow::debugExecute(uint32_t offset, uint8_t cmd) { |
| 287 | m_useSoftCom = true; |
nothing calls this directly
no test coverage detected