Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
cortex-m-rtfm-klee
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KLEE
cortex-m-rtfm-klee
Commits
03894aa2
Commit
03894aa2
authored
7 years ago
by
Henrik Tjäder
Browse files
Options
Downloads
Patches
Plain Diff
Add functions for managing the DWT Cycle Counter
parent
50bf1785
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
klee/tasks.txt
+1
-1
1 addition, 1 deletion
klee/tasks.txt
klee_stm_gdb.py
+15
-0
15 additions, 0 deletions
klee_stm_gdb.py
with
16 additions
and
1 deletion
klee/tasks.txt
+
1
−
1
View file @
03894aa2
// autogenerated file
["EXTI3", "EXTI1", "EXTI2"]
\ No newline at end of file
["EXTI2", "EXTI3", "EXTI1"]
\ No newline at end of file
This diff is collapsed.
Click to expand it.
klee_stm_gdb.py
+
15
−
0
View file @
03894aa2
...
...
@@ -392,6 +392,21 @@ def klee_run():
call
(
klee_cmd
,
shell
=
True
)
def
gdb_cyccnt_enable
():
# Enable cyccnt
gdb
.
execute
(
"
mon mww 0xe0001000 1
"
)
def
gdb_cyccnt_disable
():
# Disble cyccnt
gdb
.
execute
(
"
mon mww 0xe0001000 0
"
)
def
gdb_cyccnt_reset
():
# Reset cycle counter to 0
gdb
.
execute
(
"
mon mww 0xe0001004 0
"
)
"""
Run KLEE on the generated files
"""
# print(klee_run())
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment