Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions src/shearwater_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -799,6 +799,8 @@ dc_status_t shearwater_common_get_model(shearwater_common_device_t *device, unsi
break;
case 0xB407:
case 0xB429:
case 0xB469:
case 0x3C3D:
*model = PETREL3;
break;
case 0x0606:
Expand Down Expand Up @@ -826,7 +828,12 @@ dc_status_t shearwater_common_get_model(shearwater_common_device_t *device, unsi
case 0xC964:
*model = PERDIX2;
break;
case 0x39C2:
case 0x4AB1:
*model = PERDIX3;
break;
case 0x1F0A:
case 0x1F0F:
case 0x0F0F:
case 0x1F10:
case 0x1F1A:
Expand Down Expand Up @@ -862,5 +869,3 @@ dc_status_t shearwater_common_get_model(shearwater_common_device_t *device, unsi

return status;
}


Loading