-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #576 from ckormanyos/repair_ci
Fix #575 via repair CI
- Loading branch information
Showing
7 changed files
with
94 additions
and
216 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# /////////////////////////////////////////////////////////////////// | ||
# // Copyright Christopher Kormanyos 2020 - 2024. | ||
# // Distributed under the Boost Software License, | ||
# // Version 1.0. (See accompanying file LICENSE_1_0.txt | ||
# // or copy at http://www.boost.org/LICENSE_1_0.txt) | ||
# // | ||
|
||
# Connect to the target (e.g., OpenOCD or another GDB server). | ||
target remote localhost:9999 | ||
monitor halt | ||
|
||
# Ensure that the program is loaded. | ||
load | ||
|
||
# Set a breakpoint at the specified subroutine. | ||
break app_benchmark_get_standalone_result | ||
|
||
# Start or continue program execution. | ||
continue | ||
|
||
# Format and print the value of a variable. | ||
printf "value 0x%X\n\n", app_benchmark_standalone_result | ||
|
||
# Delete (all) breakpoint(s). | ||
delete | ||
|
||
# Perform a non-elegant quit of the GDB session. | ||
quit |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.