jtag: cmsis-dap: use macro SWJ_PIN_SRST in place of magic value
While connecting under reset, use the already defined macro SWJ_PIN_SRST to assert the srst pin. Change-Id: Icebed462c0fe8f8c15f6522dc56625aa580b8858 Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: http://openocd.zylin.com/4846 Tested-by: jenkins Reviewed-by: Tomas Vanek <vanekt@fbl.cz>log_output
parent
731dc36a67
commit
f63b519385
|
@ -1096,7 +1096,7 @@ static int cmsis_dap_init(void)
|
||||||
|
|
||||||
if (jtag_reset_config & RESET_CNCT_UNDER_SRST) {
|
if (jtag_reset_config & RESET_CNCT_UNDER_SRST) {
|
||||||
if (jtag_reset_config & RESET_SRST_NO_GATING) {
|
if (jtag_reset_config & RESET_SRST_NO_GATING) {
|
||||||
retval = cmsis_dap_cmd_DAP_SWJ_Pins(0, (1 << 7), 0, NULL);
|
retval = cmsis_dap_cmd_DAP_SWJ_Pins(0, SWJ_PIN_SRST, 0, NULL);
|
||||||
if (retval != ERROR_OK)
|
if (retval != ERROR_OK)
|
||||||
return ERROR_FAIL;
|
return ERROR_FAIL;
|
||||||
LOG_INFO("Connecting under reset");
|
LOG_INFO("Connecting under reset");
|
||||||
|
|
Loading…
Reference in New Issue