Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
card10
firmware
Commits
69b55ee7
Verified
Commit
69b55ee7
authored
5 years ago
by
rahix
Browse files
Options
Downloads
Plain Diff
Merge 'Tool to enumerate CMSIS-DAP debuggers'
parents
7726c734
502d6d9f
No related branches found
No related tags found
No related merge requests found
Pipeline
#3557
passed
5 years ago
Stage: build
Stage: deploy
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.md
+3
-0
3 additions, 0 deletions
CHANGELOG.md
tools/ls_cmsis_dap/Makefile
+16
-0
16 additions, 0 deletions
tools/ls_cmsis_dap/Makefile
tools/ls_cmsis_dap/ls_cmsis_dap.c
+31
-0
31 additions, 0 deletions
tools/ls_cmsis_dap/ls_cmsis_dap.c
with
50 additions
and
0 deletions
CHANGELOG.md
+
3
−
0
View file @
69b55ee7
...
@@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
...
@@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
The format is based on
[
Keep a Changelog
](
https://keepachangelog.com/en/1.0.0/
)
.
The format is based on
[
Keep a Changelog
](
https://keepachangelog.com/en/1.0.0/
)
.
## [Unreleased]
## [Unreleased]
### Added
-
`ls_cmsis_dap`
: A tool to enumerate CMSIS-DAP debuggers
### Changed
### Changed
-
`main.py`
was moved into an app to allow easier reconfiguration of the
-
`main.py`
was moved into an app to allow easier reconfiguration of the
default app. The new
`main.py`
points to the "old" one so behavior is not
default app. The new
`main.py`
points to the "old" one so behavior is not
...
...
This diff is collapsed.
Click to expand it.
tools/ls_cmsis_dap/Makefile
0 → 100644
+
16
−
0
View file @
69b55ee7
.PHONY
:
all clean
all
:
ls_cmsis_dap-hidraw ls_cmsis_dap-libusb
clean
:
-
rm
*
.o ls_cmsis_dap-hidraw ls_cmsis_dap-libusb
ls_cmsis_dap.o
:
ls_cmsis_dap.c
ls_cmsis_dap-hidraw
:
LDFLAGS=-lhidapi-hidraw
ls_cmsis_dap-hidraw
:
ls_cmsis_dap.o
$(
CC
)
$(
LDFLAGS
)
-o
$@
$<
ls_cmsis_dap-libusb
:
LDFLAGS=-lhidapi-libusb
ls_cmsis_dap-libusb
:
ls_cmsis_dap.o
$(
CC
)
$(
LDFLAGS
)
-o
$@
$<
This diff is collapsed.
Click to expand it.
tools/ls_cmsis_dap/ls_cmsis_dap.c
0 → 100644
+
31
−
0
View file @
69b55ee7
#include
<stddef.h>
#include
<stdlib.h>
#include
<stdio.h>
#include
<hidapi/hidapi.h>
int
main
(
int
argc
,
char
*
argv
[])
{
int
rc
=
0
;
if
((
rc
=
hid_init
()))
{
fprintf
(
stderr
,
"hid_init: %d
\n
"
,
rc
);
goto
done
;
}
struct
hid_device_info
*
hid_devs
=
hid_enumerate
(
0x0d28
,
0x0204
);
if
(
!
hid_devs
)
{
fprintf
(
stderr
,
"hid_enumerate: NULL
\n
"
);
rc
=
1
;
goto
done
;
}
for
(
struct
hid_device_info
*
dev
=
hid_devs
;
dev
;
dev
=
dev
->
next
)
{
fprintf
(
stdout
,
"%s
\n
"
,
dev
->
path
);
}
done:
if
(
hid_devs
)
{
hid_free_enumeration
(
hid_devs
);
}
hid_exit
();
return
-
1
;
}
This diff is collapsed.
Click to expand it.
rahix
@rahix
mentioned in merge request
!128 (closed)
·
5 years ago
mentioned in merge request
!128 (closed)
mentioned in merge request !128
Toggle commit list
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