Skip to content

Commit

Permalink
command: reword gdb output of frequency command
Browse files Browse the repository at this point in the history
  • Loading branch information
perigoso authored and dragonmux committed Jan 27, 2024
1 parent da83932 commit bc19545
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/command.c
Original file line number Diff line number Diff line change
Expand Up @@ -367,9 +367,9 @@ bool cmd_frequency(target_s *t, int argc, const char **argv)
}
const uint32_t freq = platform_max_frequency_get();
if (freq == FREQ_FIXED)
gdb_outf("SWJ freq fixed\n");
gdb_outf("Debug iface frequency is fixed.\n");
else
gdb_outf("Current SWJ freq %" PRIu32 "Hz\n", freq);
gdb_outf("Debug iface frequency set to %" PRIu32 "Hz\n", freq);
return true;
}

Expand Down

0 comments on commit bc19545

Please sign in to comment.