ubloxmodem: Add model entries for LARA R2 series

This commit is contained in:
Jonas Bonn 2019-07-19 09:04:15 +02:00 committed by Denis Kenzior
parent a39944a5c0
commit 9b1d83eaea
2 changed files with 11 additions and 1 deletions

View File

@ -77,6 +77,15 @@ const struct ublox_model ublox_models[] = {
.name = "TOBY-L4906",
.flags = UBLOX_F_TOBY_L4,
},
/* LARA L2 series */
{
.name = "LARA-R202",
.flags = UBLOX_F_LARA_R2,
},
{
.name = "LARA-R211",
.flags = UBLOX_F_LARA_R2,
},
{ /* sentinel */ },
};

View File

@ -26,7 +26,8 @@
enum ublox_flags {
UBLOX_F_TOBY_L2 = (1 << 0),
UBLOX_F_TOBY_L4 = (1 << 1),
UBLOX_F_HAVE_USBCONF = (1 << 2),
UBLOX_F_LARA_R2 = (1 << 2),
UBLOX_F_HAVE_USBCONF = (1 << 3),
};
struct ublox_model {