Add support for MSP430F5418.
This commit is contained in:
parent
75f893ef47
commit
4362fbea2f
3
AUTHORS
3
AUTHORS
|
@ -58,3 +58,6 @@ Paul Fleischer <paul@xpg.dk>:
|
|||
|
||||
Kurt Snieckus <ksnieck@gmail.com>:
|
||||
* Testing and analysis for MSP430FR5739.
|
||||
|
||||
James Nuss <jamesnuss@nanometrics.ca>:
|
||||
* Support for MSP430F5418.
|
||||
|
|
37
fet_db.c
37
fet_db.c
|
@ -1527,7 +1527,42 @@ static const struct fet_db_record fet_db[] = {
|
|||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00
|
||||
}
|
||||
}
|
||||
},
|
||||
{ /* From captured data */
|
||||
.name = "MSP430F5418",
|
||||
.msg28_data = {
|
||||
0x54, 0x18, 0x10, 0x10, 0x08, 0x0a, 0x25, 0x55,
|
||||
0x84, 0x46, 0x24, 0x00, 0x26, 0x00, 0xf8, 0xfe,
|
||||
0xff, 0xff
|
||||
/* extra: 91 00 01 00 1a 00 00 05 */
|
||||
},
|
||||
.msg29_params = {0x00, 0x63, 0x5b},
|
||||
.msg29_data = {
|
||||
0x00, 0x5c, 0xff, 0x5b, 0x02, 0x00, 0x00, 0x18,
|
||||
0xff, 0x19, 0x80, 0x00, 0x00, 0x1c, 0xff, 0x5b,
|
||||
0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x07, 0x00,
|
||||
0x02, 0x00, 0x0f, 0x04, 0x00, 0x00, 0x00, 0x00,
|
||||
0x08, 0x07, 0x10, 0x0e, 0xc4, 0x09, 0x70, 0x17,
|
||||
0x58, 0x1b, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00,
|
||||
0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
|
||||
0xff, 0xff
|
||||
},
|
||||
.msg2b_len = 0x4a,
|
||||
.msg2b_data = {
|
||||
0x00, 0x10, 0xff, 0x17, 0x00, 0x02, 0x02, 0x00,
|
||||
0x0a, 0x00, 0x40, 0x00, 0x0a, 0x91, 0x8e, 0x9d,
|
||||
0x00, 0x00, 0x28, 0x29, 0x2a, 0x2b, 0x8a, 0xd8,
|
||||
0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01,
|
||||
0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x01,
|
||||
0x00, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
const struct fet_db_record *fet_db_find_by_msg28(uint8_t *data, int len)
|
||||
|
|
Loading…
Reference in New Issue