Last active
July 25, 2025 20:50
-
-
Save shinyquagsire23/ff46d124a06a01b22334ff54d73062a4 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| diff --git a/src/jtag/drivers/Makefile.am b/src/jtag/drivers/Makefile.am | |
| index cc808bb6e..5d2affcd5 100644 | |
| --- a/src/jtag/drivers/Makefile.am | |
| +++ b/src/jtag/drivers/Makefile.am | |
| @@ -74,7 +74,7 @@ DRIVERFILES += %D%/eud.c | |
| SUBDIRS += %D%/eud | |
| DIST_SUBDIRS += %D%/eud | |
| %C%_libocdjtagdrivers_la_LIBADD += %D%/eud/libeud.la -lstdc++ -lm | |
| -%C%_libocdjtagdrivers_la_CPPFLAGS += -I$(srcdir)/%D%/eud/inc | |
| +%C%_libocdjtagdrivers_la_CPPFLAGS += -I$(srcdir)/%D%/eud/inc -I /opt/homebrew/Cellar/libusb/1.0.27/include/ | |
| endif | |
| if FTDI | |
| diff --git a/src/jtag/drivers/eud b/src/jtag/drivers/eud | |
| --- a/src/jtag/drivers/eud | |
| +++ b/src/jtag/drivers/eud | |
| @@ -1 +1 @@ | |
| -Subproject commit 2e89590f5a77e1909c1ba6fa115061db4e09c4e1 | |
| +Subproject commit 2e89590f5a77e1909c1ba6fa115061db4e09c4e1-dirty | |
| diff --git a/src/jtag/drivers/eud.c b/src/jtag/drivers/eud.c | |
| index c3554d910..24086fd60 100644 | |
| --- a/src/jtag/drivers/eud.c | |
| +++ b/src/jtag/drivers/eud.c | |
| @@ -650,7 +650,7 @@ static int eud_swd_init(void) | |
| COMMAND_HANDLER(eud_trigger_seq) | |
| { | |
| COMMAND_PARSE_ADDRESS(CMD_ARGV[0], periodic_seq_timeout); | |
| - LOG_INFO("periodic_seq_timeout = 0x%lx ", periodic_seq_timeout); | |
| + LOG_INFO("periodic_seq_timeout = 0x%llx ", periodic_seq_timeout); | |
| return ERROR_OK; | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment