Add more error codes from MSP430.dll v3:

http://processors.wiki.ti.com/index.php/MSP430.dll_v3
This commit is contained in:
Tamas TEVESZ 2011-08-15 13:11:35 +02:00 committed by Daniel Beer
parent 62bd2ccd18
commit 3a8994b4f7
2 changed files with 72 additions and 55 deletions

View File

@ -61,3 +61,7 @@ Kurt Snieckus <ksnieck@gmail.com>:
James Nuss <jamesnuss@nanometrics.ca>:
* Support for MSP430F5418.
Tamas Tevesz <ice@extreme.hu>:
* Improvements to interactive interface.
* Support for MSP430AFE253.

View File

@ -22,7 +22,7 @@
#include "util.h"
/* This table is taken from uif430 */
/* These messages come from uif430 and from MSP430.DLL V3. */
static const char *error_strings[] =
{
"No error", // 0
@ -83,7 +83,20 @@ static const char *error_strings[] =
"Could not read sequencer state - Sequencer is disabled", // 50
"Could not remove trigger - Used in sequencer", // 51
"Could not set combination - Trigger is used in sequencer", // 52
"Invalid error number", // 53
"System Protection Module A is enabled - Device locked", // 53
"Invalid SPMA key was passed to the target device - Device locked", // 54
"Device does not accept any further SPMA keys - Device locked", // 55
"MSP-FET430UIF Firmware erased - Bootloader active", // 56
"Could not find MSP-FET430UIF on specified COM port", // 57
"MSP-FET430UIF is already in use", // 58
"Enhanced Emulation Module polling thread is already active", // 59
"Could not terminate Enhanced Emulation Module polling thread", // 60
"Could not unlock BSL memory segments", // 61
"Could not perform access, BSL memory segments are protected", // 62
"FOUND_OTHER_DEVICE (errcode=63)", /* XXX */ // 63
"Wrong Password provided to open JTAG", // 64
"Invalid error number", // 65
};
const char *fet_error(int code)