Skip to content
Open
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: 8 additions & 1 deletion src/garmin.c
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ typedef struct garmin_device_t {
#endif
} garmin_device_t;

// Ids can be found at https://developer.garmin.com/connect-iq/reference-guides/devices-reference/
// Ids can be found at https://developer.garmin.com/connect-iq/device-reference/
// (look for 'Part Number')

const garmin_model_t garmin_models[] = {
Expand All @@ -99,6 +99,13 @@ const garmin_model_t garmin_models[] = {
{ "Descent™ Mk3(i) 43mm", 4222, true },
{ "Descent™ Mk3(i) 51mm", 4223, true },
{ "Descent™ X50i", 4518, true },
{ "fēnix® 8 43mm", 4534, true },
{ "fēnix® 8 47mm / 51mm / tactix® 8 47mm / 51mm / quatix® 8 47mm / 51mm APAC", 4536, true },
{ "fēnix® 8 47mm / 51mm / tactix® 8 47mm / 51mm / quatix® 8 47mm / 51mm", 4775, true },
{ "fēnix® 8 Pro 47mm / 51mm / MicroLED / quatix® 8 Pro 47mm / 51mm", 4631, true },
{ "fēnix® 8 Solar 47mm", 4532, true },
{ "fēnix® 8 Solar 51mm / tactix® 8 Solar 51mm APAC", 4533, true },
{ "fēnix® 8 Solar 51mm / tactix® 8 Solar 51mm", 4776, true },
{ NULL, 0, false }
};

Expand Down
Loading