From: openocd-gerrit <ope...@us...> - 2024-08-02 16:02:03
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via 632df9e5cbf27f8c5f5d2633918af53c6b80d970 (commit) from 882749dd2f4afe3758daf40d8b501c1af5166fa8 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 632df9e5cbf27f8c5f5d2633918af53c6b80d970 Author: Marc Schink <de...@za...> Date: Wed Jul 17 15:11:46 2024 +0200 jtag: Use bool data type for 'jtag_verify' Change-Id: Iae46e45c7523252eee44224e6b9b3b1484aaeb35 Signed-off-by: Marc Schink <de...@za...> Reviewed-on: https://review.openocd.org/c/openocd/+/8401 Tested-by: jenkins Reviewed-by: Antonio Borneo <bor...@gm...> diff --git a/src/jtag/core.c b/src/jtag/core.c index c84d5aa3d..c8f20b73c 100644 --- a/src/jtag/core.c +++ b/src/jtag/core.c @@ -88,7 +88,7 @@ static enum reset_types jtag_reset_config = RESET_NONE; tap_state_t cmd_queue_cur_state = TAP_RESET; static bool jtag_verify_capture_ir = true; -static int jtag_verify = 1; +static bool jtag_verify = true; /* how long the OpenOCD should wait before attempting JTAG communication after reset lines *deasserted (in ms) */ ----------------------------------------------------------------------- Summary of changes: src/jtag/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- Main OpenOCD repository |