- error message cleanup in jlink driver
git-svn-id: svn://svn.berlios.de/openocd/trunk@707 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
parent
ba8c605da4
commit
710c1a9ed9
|
@ -55,7 +55,6 @@
|
|||
#define JLINK_OUT_BUFFER_SIZE 8192
|
||||
#define JLINK_EMU_RESULT_BUFFER_SIZE 64
|
||||
|
||||
|
||||
/* Global USB buffers */
|
||||
static u8 usb_in_buffer[JLINK_IN_BUFFER_SIZE];
|
||||
static u8 usb_out_buffer[JLINK_OUT_BUFFER_SIZE];
|
||||
|
@ -290,7 +289,7 @@ int jlink_init(void)
|
|||
|
||||
if (jlink_jtag_handle == 0)
|
||||
{
|
||||
LOG_ERROR("Can't find USB JTAG Interface! Please check connection and permissions.");
|
||||
LOG_ERROR("Cannot find jlink Interface! Please check connection and permissions.");
|
||||
return ERROR_JTAG_INIT_FAILED;
|
||||
}
|
||||
|
||||
|
@ -495,7 +494,7 @@ int jlink_get_status(void)
|
|||
|
||||
if (vref < 1500)
|
||||
{
|
||||
LOG_ERROR("Vref too low. Eventually the target isn't powered or disconnected?\n");
|
||||
LOG_ERROR("Vref too low. Check Target Power\n");
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue