Skip to content

Commit

Permalink
BMDebug: support SVD files (in variable watches, tooltips and auto-co…
Browse files Browse the repository at this point in the history
…mpletion).

BMTrace: support filters on trace messages; more details on the connection to BMP or ctxLink.
  • Loading branch information
compuphase committed Oct 12, 2020
1 parent 0396ae9 commit 3db2ce2
Show file tree
Hide file tree
Showing 25 changed files with 1,466 additions and 335 deletions.
Binary file modified BlackMagicProbe.pdf
Binary file not shown.
Binary file modified doc/BlackMagicProbe.odt
Binary file not shown.
5 changes: 4 additions & 1 deletion source/Makefile.linux
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ endif

OBJLIST_BMDEBUG = bmdebug.o bmp-scan.o bmp-script.o dwarf.o elf.o \
guidriver.o minIni.o nuklear_tooltip.o nuklear_mousepointer.o \
rs232.o specialfolder.o tcpip.o decodectf.o parsetsdl.o swotrace.o \
rs232.o specialfolder.o tcpip.o decodectf.o parsetsdl.o \
svd-support.o swotrace.o xmltractor.o \
nuklear.o nuklear_glfw_gl2.o noc_file_dialog.o \
findfont.o lodepng.o

Expand Down Expand Up @@ -150,6 +151,8 @@ rs232.o : rs232.c

specialfolder.o : specialfolder.c

svd-support.o : svd-support.c

swotrace.o : swotrace.c

tcpip.o : tcpip.c
Expand Down
6 changes: 4 additions & 2 deletions source/Makefile.mingw
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ endif
OBJLIST_BMDEBUG = bmdebug.o bmp-scan.o bmp-script.o dwarf.o elf.o \
guidriver.o minIni.o nuklear_mousepointer.o nuklear_tooltip.o \
rs232.o specialfolder.o strlcpy.o tcpip.o usb-support.o \
decodectf.o parsetsdl.o swotrace.o \
nuklear.o nuklear_gdip.o noc_file_dialog.o
svd-support.o decodectf.o parsetsdl.o swotrace.o \
xmltractor.o nuklear.o nuklear_gdip.o noc_file_dialog.o

OBJLIST_BMFLASH = bmflash.o bmp-scan.o bmp-script.o bmp-support.o crc32.o \
elf.o gdb-rsp.o guidriver.o minIni.o nuklear_mousepointer.o \
Expand Down Expand Up @@ -143,6 +143,8 @@ specialfolder.o : specialfolder.c

strlcpy.o : strlcpy.c

svd-support.o : svd-support.c

swotrace.o : swotrace.c

tcpip.o : tcpip.c
Expand Down
8 changes: 5 additions & 3 deletions source/Makefile.msvc
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ LFLAGS_C = $(L_DEBUG) /NOLOGO /SUBSYSTEM:console
OBJLIST_BMDEBUG = bmdebug.obj bmp-scan.obj bmp-script.obj dwarf.obj elf.obj \
guidriver.obj minini.obj nuklear_mousepointer.obj nuklear_tooltip.obj \
rs232.obj specialfolder.obj strlcpy.obj tcpip.obj usb-support.obj \
decodectf.obj parsetsdl.obj swotrace.obj \
nuklear.obj nuklear_gdip.obj noc_file_dialog.obj
svd-support.obj decodectf.obj parsetsdl.obj swotrace.obj \
xmltractor.obj nuklear.obj nuklear_gdip.obj noc_file_dialog.obj

OBJLIST_BMFLASH = bmflash.obj bmp-scan.obj bmp-script.obj bmp-support.obj crc32.obj \
elf.obj gdb-rsp.obj guidriver.obj minIni.obj nuklear_mousepointer.obj \
Expand All @@ -92,7 +92,7 @@ OBJLIST_TRACEGEN = tracegen.obj parsetsdl.obj strlcpy.obj
project : bmdebug.exe bmflash.exe bmtrace.exe bmscan.exe elf-postlink.exe tracegen.exe

depend :
makedepend -b -oobj -fmakefile.dep $(OBJLIST_BMDEBUG:.obj=.c) $(OBJLIST_BMFLASH:.obj=.c) \
makedepend -b -e -o.obj -fmakefile.dep $(OBJLIST_BMDEBUG:.obj=.c) $(OBJLIST_BMFLASH:.obj=.c) \
$(OBJLIST_BMTRACE:.obj=.c) $(OBJLIST_BMSCAN:.obj=.c) $(OBJLIST_POSTLINK:.obj=.c) \
$(OBJLIST_TRACEGEN:.obj=.c)

Expand Down Expand Up @@ -135,6 +135,8 @@ rs232.obj : rs232.c

specialfolder.obj : specialfolder.c

svd-support.obj : svd-support.c

swotrace.obj : swotrace.c

tcpip.obj : tcpip.c
Expand Down
Loading

0 comments on commit 3db2ce2

Please sign in to comment.