Skip to content
Snippets Groups Projects
Commit 710c1a9e authored by ntfreak's avatar ntfreak
Browse files

- error message cleanup in jlink driver

git-svn-id: svn://svn.berlios.de/openocd/trunk@707 b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent ba8c605d
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment