Skip to content

Commit

Permalink
Merge pull request #1922 from df8oe/db4ple-patch-1
Browse files Browse the repository at this point in the history
Fix for FT817 / Hamlib issue
  • Loading branch information
df8oe authored Nov 6, 2021
2 parents da851f6 + 2c9e3d6 commit b8ac19f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mchf-eclipse/drivers/cat/cat_driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,7 @@ static const ft817_eeprom_emul_t ft817_eeprom[] =
{ .type = FT817EE_DATA, .start = 0, .end = 3, .content.value = 0 }, // checksum
{ .type = FT817EE_DATA, .start = 4, .end = 4, .content.value = 0xD8 }, // radio config
{ .type = FT817EE_DATA, .start = 5, .end = 5, .content.value = 0xBF }, // radio config
{ .type = FT817EE_FUNC, .start = 0x54, .end = 0x54, .content.value = 0xFF }, // this is just to make HAMLIB happy when reading 0x55 by requesting 0x54
{ .type = FT817EE_DATA, .start = 0x54, .end = 0x54, .content.value = 0xFF }, // this is just to make HAMLIB happy when reading 0x55 by requesting 0x54
// (and ignoring this value). This might break things if an application really wants to read a useful value from 0x54

{ .type = FT817EE_FUNC, .start = 0x55, .end = 0x55, .content.funcPtr = CatDriver_Ft817_EEPROM_RW_Func }, // VOX Delay and other stuff, fixed value, required by WSJT-X
Expand Down

0 comments on commit b8ac19f

Please sign in to comment.