ftdi-la: added FT232H device ID

This commit is contained in:
Paul 2018-12-19 21:23:57 +01:00 committed by Uwe Hermann
parent a9ed2eb069
commit c7a51272a5
1 changed files with 11 additions and 0 deletions

View File

@ -67,9 +67,20 @@ static const struct ftdi_chip_desc ft232r_desc = {
}
};
static const struct ftdi_chip_desc ft232h_desc = {
.vendor = 0x0403,
.product = 0x6014,
.samplerate_div = 30,
.channel_names = {
"ADBUS0", "ADBUS1", "ADBUS2", "ADBUS3", "ADBUS4", "ADBUS5", "ADBUS6", "ADBUS7",
NULL
}
};
static const struct ftdi_chip_desc *chip_descs[] = {
&ft2232h_desc,
&ft232r_desc,
&ft232h_desc,
};
static void scan_device(struct ftdi_context *ftdic,