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 rg-silva committed Jan 17, 2024
1 parent 5a99a95 commit 60f2511
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 @@ -360,9 +360,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 60f2511

Please sign in to comment.