From 845e8e407733614d9b7f0a7179caa3d5ca18b3d5 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Wed, 17 Sep 2014 18:27:55 +0200 Subject: [PATCH] Added a quirk for slow SIM PIN authentication --- src/modems/hayes/quirks.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/modems/hayes/quirks.h b/src/modems/hayes/quirks.h index 71db162..93775ef 100644 --- a/src/modems/hayes/quirks.h +++ b/src/modems/hayes/quirks.h @@ -24,11 +24,12 @@ /* types */ typedef enum _HayesQuirk { - HAYES_QUIRK_BATTERY_70 = 0x1, - HAYES_QUIRK_CPIN_NO_QUOTES = 0x2, - HAYES_QUIRK_CONNECTED_LINE_DISABLED = 0x4, - HAYES_QUIRK_WANT_SMSC_IN_PDU = 0x8, - HAYES_QUIRK_REPEAT_ON_UNKNOWN_ERROR = 0x10 + HAYES_QUIRK_BATTERY_70 = 0x01, + HAYES_QUIRK_CPIN_NO_QUOTES = 0x02, + HAYES_QUIRK_CPIN_SLOW = 0x04, + HAYES_QUIRK_CONNECTED_LINE_DISABLED = 0x08, + HAYES_QUIRK_WANT_SMSC_IN_PDU = 0x10, + HAYES_QUIRK_REPEAT_ON_UNKNOWN_ERROR = 0x20 } HayesQuirk; typedef const struct _HayesQuirks