Skip to content

Commit

Permalink
Mark firmware < v1.3 deprecated.
Browse files Browse the repository at this point in the history
  • Loading branch information
horacekj committed Nov 16, 2023
1 parent 1794ca8 commit 34dde11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mtbusb/mtbusb.h
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ struct MtbUsbInfo {
QString fw_version() const { return QString::number(fw_major) + "." + QString::number(fw_minor); }
QString proto_version() const { return QString::number(proto_major) + "." + QString::number(proto_minor); }
uint16_t fw_raw() const { return (fw_major << 8) | fw_minor; }
bool fw_deprecated() const { return (fw_raw() < 0x0102); }
bool fw_deprecated() const { return (fw_raw() < 0x0103); }
};


Expand Down

0 comments on commit 34dde11

Please sign in to comment.