Skip to content

Commit

Permalink
Basic_rBoot: Show ROM addresses in Hex
Browse files Browse the repository at this point in the history
  • Loading branch information
mikee47 committed Mar 10, 2021
1 parent caf4e69 commit 44adc2a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions samples/Basic_rBoot/app/application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,9 @@ void ShowInfo()
conf = rboot_get_config();

debugf("Count: %d", conf.count);
debugf("ROM 0: %d", conf.roms[0]);
debugf("ROM 1: %d", conf.roms[1]);
debugf("ROM 2: %d", conf.roms[2]);
debugf("ROM 0: 0x%08x", conf.roms[0]);
debugf("ROM 1: 0x%08x", conf.roms[1]);
debugf("ROM 2: 0x%08x", conf.roms[2]);
debugf("GPIO ROM: %d", conf.gpio_rom);
}

Expand Down

0 comments on commit 44adc2a

Please sign in to comment.