mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-04-06 06:53:37 +00:00
Fix further sweep timeout issues
This commit is contained in:
parent
4541dcb71b
commit
947a6b9d83
9 changed files with 53 additions and 14 deletions
|
|
@ -498,3 +498,16 @@ void VNA::Stop() {
|
|||
active = false;
|
||||
FPGA::AbortSweep();
|
||||
}
|
||||
|
||||
void VNA::PrintStatus() {
|
||||
HAL_Delay(10);
|
||||
LOG_INFO("VNA status:");
|
||||
HAL_Delay(10);
|
||||
LOG_INFO("Active: %d", active);
|
||||
HAL_Delay(10);
|
||||
LOG_INFO("Points: %d/%d", pointCnt, settings.points);
|
||||
HAL_Delay(10);
|
||||
LOG_INFO("Stages: %d/%d", stageCnt, stages);
|
||||
HAL_Delay(10);
|
||||
LOG_INFO("FPGA status: 0x%04x", FPGA::GetStatus());
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue